Description Usage Arguments Value Author(s) References See Also Examples
Queries the CGDS API and returns mutation data for a given case set and list of genes.
1 2 | ## S3 method for class 'CGDS'
getMutationData(x, caseList, geneticProfile, genes, ...)
|
x |
A CGDS object (required) |
caseList |
A case list ID |
geneticProfile |
A genetic profile ID with mutation data |
genes |
A vector of query genes |
... |
Not used. |
A data.frame with rows for each sample/case, rownames corresponding to case IDs, and columns corresponding to:
entrez_gene_id: Entrez gene ID
gene_symbol: HUGO gene symbol
sequencing_center: Sequencer Center responsible for identifying this mutation.
mutation_status: somatic or germline mutation status. all mutations returned will be of type somatic.
age_at_diagnosis: Age at diagnosis.
mutation_type: mutation type, such as nonsense, missense, or frameshift_ins.
validation_status: validation status. Usually valid, invalid, or unknown.
amino_acid_change: amino acid change resulting from the mutation.
functional_impact_score: predicted functional impact score, as predicted by Mutation Assessor.
xvar_link: Link to the Mutation Assessor web site.
xvar_link_pdb: Link to the Protein Data Bank (PDB) View within Mutation Assessor web site.
xvar_link_msa: Link the Multiple Sequence Alignment (MSA) view within the Mutation Assessor web site.
chr: chromosome where mutation occurs.
start_position: start position of mutation.
end_position: end position of mutation
<jacobsen@cbio.mskcc.org>
cBio Cancer Genomics Portal: http://www.cbioportal.org/
1 2 3 4 5 6 7 8 9 10 | # Create CGDS object
mycgds = CGDS("http://www.cbioportal.org/")
getCancerStudies(mycgds)
# Get available case lists (collection of samples) for a given cancer study
# Get Extended Mutation Data for EGFR and PTEN in TCGA GBM
getMutationData(mycgds,gbm_tcga_all,gbm_tcga_mutations,c('EGFR','PTEN'))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.