GDCquery | R Documentation |
Uses GDC API to search for search, it searches for both controlled and open-access data. For GDC data arguments project, data.category, data.type and workflow.type should be used Please, see the vignette for a table with the possibilities.
GDCquery(
project,
data.category,
data.type,
workflow.type,
access,
platform,
barcode,
data.format,
experimental.strategy,
sample.type
)
project |
A list of valid project (see list with TCGAbiolinks:::getGDCprojects()$project_id)]
| ||||||||||||||||||||||||||||||||||||||||||||||
data.category |
A valid project (see list with TCGAbiolinks:::getProjectSummary(project)) For the complete list please check the vignette. List for harmonized database:
| ||||||||||||||||||||||||||||||||||||||||||||||
data.type |
A data type to filter the files to download For the complete list please check the vignette. | ||||||||||||||||||||||||||||||||||||||||||||||
workflow.type |
GDC workflow type | ||||||||||||||||||||||||||||||||||||||||||||||
access |
Filter by access type. Possible values: controlled, open | ||||||||||||||||||||||||||||||||||||||||||||||
platform |
Example:
| ||||||||||||||||||||||||||||||||||||||||||||||
barcode |
A list of barcodes to filter the files to download | ||||||||||||||||||||||||||||||||||||||||||||||
data.format |
Data format filter ("VCF", "TXT", "BAM","SVS","BCR XML","BCR SSF XML", "TSV", "BCR Auxiliary XML", "BCR OMF XML", "BCR Biotab", "MAF", "BCR PPS XML", "XLSX") | ||||||||||||||||||||||||||||||||||||||||||||||
experimental.strategy |
Filter to experimental strategy. Harmonized: WXS, RNA-Seq, miRNA-Seq, Genotyping Array. | ||||||||||||||||||||||||||||||||||||||||||||||
sample.type |
A sample type to filter the files to download |
A data frame with the results and the parameters used
Tiago Chedraoui Silva
query <- GDCquery(
project = "TCGA-ACC",
data.category = "Copy Number Variation",
data.type = "Copy Number Segment"
)
## Not run:
query <- GDCquery(
project = "TARGET-AML",
data.category = "Transcriptome Profiling",
data.type = "miRNA Expression Quantification",
workflow.type = "BCGSC miRNA Profiling",
barcode = c("TARGET-20-PARUDL-03A-01R","TARGET-20-PASRRB-03A-01R")
)
query <- GDCquery(
project = "TARGET-AML",
data.category = "Transcriptome Profiling",
data.type = "Gene Expression Quantification",
workflow.type = "STAR - Counts",
barcode = c("TARGET-20-PADZCG-04A-01R","TARGET-20-PARJCR-09A-01R")
)
query <- GDCquery(
project = "TCGA-ACC",
data.category = "Copy Number Variation",
data.type = "Masked Copy Number Segment",
sample.type = c("Primary Tumor")
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.