Retrieve metadata for a specific gene from the CIViC DB

getGeneMetadata(id, type)

Arguments

id

ID of the gene of interest

type

Type of metadata (comments, suggested_changes, revisions, variants)

identifier_type

Type of gene identifier (entrez_id, entrez_symbol, civic_id)

Value

An S3 Object of type civic_api containing the content, url, and response

Examples

getGeneMetadata(id = 1, type = "comments")
#> $content #> list() #> #> $url #> [1] "https://civicdb.org/api/genes/1/comments" #> #> $response #> Response [https://civicdb.org/api/genes/1/comments] #> Date: 2019-09-03 16:44 #> Status: 200 #> Content-Type: application/json; charset=utf-8 #> Size: 2 B #> #> #> attr(,"class") #> [1] "civic_api"
getGeneMetadata(id = 1, type = "variants")
#> $content #> $content$`_meta` #> $content$`_meta`$current_page #> [1] 1 #> #> $content$`_meta`$per_page #> [1] 25 #> #> $content$`_meta`$total_pages #> [1] 2 #> #> $content$`_meta`$total_count #> [1] 46 #> #> $content$`_meta`$links #> $content$`_meta`$links$`next` #> [1] "https://civicdb.org/api/genes/1/variants?count=25&page=2" #> #> $content$`_meta`$links$previous #> NULL #> #> #> #> $content$records #> $content$records[[1]] #> $content$records[[1]]$id #> [1] 5 #> #> $content$records[[1]]$entrez_name #> [1] "ALK" #> #> $content$records[[1]]$entrez_id #> [1] 238 #> #> $content$records[[1]]$name #> [1] "EML4-ALK" #> #> $content$records[[1]]$description #> [1] "The EML4-ALK fusion variant 1 consisting of ALK kinase domain (exons 20-29) fused to EML4 exons 1-13 is the most common EML4-ALK variant, and was discovered in non-small cell lung cancer. Multiple EML4 breakpoint shave been described with differential sensitivity to inhibitors with variant 1 showing greater sensitivity than 3a in cell lines. EML4-ALK is crizotinib sensitive; however, several mutations that confer resistance mutations have been described in case studies. In the only clinical trial for crizotinib that included determination of EML4-ALK variant type in a subset of its participants, a very high response rate was observed, although the numbers were insufficient to validate correlation of variant type to outcome. Preclinical studies with this variant have indicated sensitivity to Hsp90 inhibitors." #> #> $content$records[[1]]$gene_id #> [1] 1 #> #> $content$records[[1]]$type #> [1] "variant" #> #> $content$records[[1]]$variant_types #> $content$records[[1]]$variant_types[[1]] #> $content$records[[1]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[1]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[1]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[1]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[1]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[1]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[1]]$civic_actionability_score #> [1] 48 #> #> $content$records[[1]]$coordinates #> $content$records[[1]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[1]]$coordinates$start #> [1] 42396490 #> #> $content$records[[1]]$coordinates$stop #> [1] 42522656 #> #> $content$records[[1]]$coordinates$reference_bases #> NULL #> #> $content$records[[1]]$coordinates$variant_bases #> NULL #> #> $content$records[[1]]$coordinates$representative_transcript #> [1] "ENST00000318522.5" #> #> $content$records[[1]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[1]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[1]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[1]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[1]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[1]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[2]] #> $content$records[[2]]$id #> [1] 6 #> #> $content$records[[2]]$entrez_name #> [1] "ALK" #> #> $content$records[[2]]$entrez_id #> [1] 238 #> #> $content$records[[2]]$name #> [1] "EML4-ALK C1156Y" #> #> $content$records[[2]]$description #> [1] "In patients with non-small cell lung cancer exhibiting EML4-ALK fusion, C1156Y has been shown to confer resistance to crizotinib. Case reports indicate that secondary mutations can modulate drug sensitivity. EML4-ALK C1156Y/L1196M maintained crizotinib resistance while the lorlatinib resistant combination EML4-ALK C1156Y/L1198F re-sensitized the tumor to crizotinib treatment." #> #> $content$records[[2]]$gene_id #> [1] 1 #> #> $content$records[[2]]$type #> [1] "variant" #> #> $content$records[[2]]$variant_types #> $content$records[[2]]$variant_types[[1]] #> $content$records[[2]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[2]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[2]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[2]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[2]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[2]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> $content$records[[2]]$variant_types[[2]] #> $content$records[[2]]$variant_types[[2]]$id #> [1] 47 #> #> $content$records[[2]]$variant_types[[2]]$name #> [1] "missense_variant" #> #> $content$records[[2]]$variant_types[[2]]$display_name #> [1] "Missense Variant" #> #> $content$records[[2]]$variant_types[[2]]$so_id #> [1] "SO:0001583" #> #> $content$records[[2]]$variant_types[[2]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[2]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[2]]$civic_actionability_score #> [1] 19 #> #> $content$records[[2]]$coordinates #> $content$records[[2]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[2]]$coordinates$start #> [1] 29445258 #> #> $content$records[[2]]$coordinates$stop #> [1] 29445258 #> #> $content$records[[2]]$coordinates$reference_bases #> [1] "C" #> #> $content$records[[2]]$coordinates$variant_bases #> [1] "T" #> #> $content$records[[2]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[2]]$coordinates$chromosome2 #> NULL #> #> $content$records[[2]]$coordinates$start2 #> NULL #> #> $content$records[[2]]$coordinates$stop2 #> NULL #> #> $content$records[[2]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[2]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[2]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[3]] #> $content$records[[3]]$id #> [1] 7 #> #> $content$records[[3]]$entrez_name #> [1] "ALK" #> #> $content$records[[3]]$entrez_id #> [1] 238 #> #> $content$records[[3]]$name #> [1] "EML4-ALK L1196M" #> #> $content$records[[3]]$description #> [1] "In patients with non-small cell lung cancer exhibiting EML4-ALK fusion, L1196M has been shown to confer resistance to crizotinib. This was also true in a patient with both EML4-ALK C1156Y & L1196M." #> #> $content$records[[3]]$gene_id #> [1] 1 #> #> $content$records[[3]]$type #> [1] "variant" #> #> $content$records[[3]]$variant_types #> $content$records[[3]]$variant_types[[1]] #> $content$records[[3]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[3]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[3]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[3]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[3]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[3]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> $content$records[[3]]$variant_types[[2]] #> $content$records[[3]]$variant_types[[2]]$id #> [1] 47 #> #> $content$records[[3]]$variant_types[[2]]$name #> [1] "missense_variant" #> #> $content$records[[3]]$variant_types[[2]]$display_name #> [1] "Missense Variant" #> #> $content$records[[3]]$variant_types[[2]]$so_id #> [1] "SO:0001583" #> #> $content$records[[3]]$variant_types[[2]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[3]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[3]]$civic_actionability_score #> [1] 31 #> #> $content$records[[3]]$coordinates #> $content$records[[3]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[3]]$coordinates$start #> [1] 29443631 #> #> $content$records[[3]]$coordinates$stop #> [1] 29443631 #> #> $content$records[[3]]$coordinates$reference_bases #> [1] "G" #> #> $content$records[[3]]$coordinates$variant_bases #> [1] "T" #> #> $content$records[[3]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[3]]$coordinates$chromosome2 #> NULL #> #> $content$records[[3]]$coordinates$start2 #> NULL #> #> $content$records[[3]]$coordinates$stop2 #> NULL #> #> $content$records[[3]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[3]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[3]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[4]] #> $content$records[[4]]$id #> [1] 8 #> #> $content$records[[4]]$entrez_name #> [1] "ALK" #> #> $content$records[[4]]$entrez_id #> [1] 238 #> #> $content$records[[4]]$name #> [1] "F1174L" #> #> $content$records[[4]]$description #> [1] "ALK F1174L has been observed as recurrent in neuroblastoma, non-small cell lung cancer (NSCLC), and other cancer types. Neuroblastoma cells containing this mutation have shown resistance to low doses of criztonib. However, increased dosage can overcome this resistance in cell lines studies. TAE684 has also proven effective in both NSCLC and neuroblastoma F1174L containing cells." #> #> $content$records[[4]]$gene_id #> [1] 1 #> #> $content$records[[4]]$type #> [1] "variant" #> #> $content$records[[4]]$variant_types #> $content$records[[4]]$variant_types[[1]] #> $content$records[[4]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[4]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[4]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[4]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[4]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[4]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[4]]$civic_actionability_score #> [1] 33.5 #> #> $content$records[[4]]$coordinates #> $content$records[[4]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[4]]$coordinates$start #> [1] 29443695 #> #> $content$records[[4]]$coordinates$stop #> [1] 29443695 #> #> $content$records[[4]]$coordinates$reference_bases #> [1] "G" #> #> $content$records[[4]]$coordinates$variant_bases #> [1] "T" #> #> $content$records[[4]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[4]]$coordinates$chromosome2 #> NULL #> #> $content$records[[4]]$coordinates$start2 #> NULL #> #> $content$records[[4]]$coordinates$stop2 #> NULL #> #> $content$records[[4]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[4]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[4]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[5]] #> $content$records[[5]]$id #> [1] 9 #> #> $content$records[[5]]$entrez_name #> [1] "ALK" #> #> $content$records[[5]]$entrez_id #> [1] 238 #> #> $content$records[[5]]$name #> [1] "R1275Q" #> #> $content$records[[5]]$description #> [1] "ALK R1275Q has been observed as a recurrent mutation in neuroblastoma, non-small cell lung cancer (NSCLC), as well as other cancer types. Neuroblastoma cells with this mutation have shown sensitivity to the ALK-inhibitor TAE684. This and the geldanamycin deriviative 17-DMAG have been shown to be effective in NSCLC cell lines." #> #> $content$records[[5]]$gene_id #> [1] 1 #> #> $content$records[[5]]$type #> [1] "variant" #> #> $content$records[[5]]$variant_types #> $content$records[[5]]$variant_types[[1]] #> $content$records[[5]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[5]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[5]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[5]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[5]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[5]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[5]]$civic_actionability_score #> [1] 23 #> #> $content$records[[5]]$coordinates #> $content$records[[5]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[5]]$coordinates$start #> [1] 29432664 #> #> $content$records[[5]]$coordinates$stop #> [1] 29432664 #> #> $content$records[[5]]$coordinates$reference_bases #> [1] "C" #> #> $content$records[[5]]$coordinates$variant_bases #> [1] "T" #> #> $content$records[[5]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[5]]$coordinates$chromosome2 #> NULL #> #> $content$records[[5]]$coordinates$start2 #> NULL #> #> $content$records[[5]]$coordinates$stop2 #> NULL #> #> $content$records[[5]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[5]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[5]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[6]] #> $content$records[[6]]$id #> [1] 170 #> #> $content$records[[6]]$entrez_name #> [1] "ALK" #> #> $content$records[[6]]$entrez_id #> [1] 238 #> #> $content$records[[6]]$name #> [1] "EML4-ALK AMPLIFICATION" #> #> $content$records[[6]]$description #> [1] "" #> #> $content$records[[6]]$gene_id #> [1] 1 #> #> $content$records[[6]]$type #> [1] "variant" #> #> $content$records[[6]]$variant_types #> $content$records[[6]]$variant_types[[1]] #> $content$records[[6]]$variant_types[[1]]$id #> [1] 123 #> #> $content$records[[6]]$variant_types[[1]]$name #> [1] "transcript_amplification" #> #> $content$records[[6]]$variant_types[[1]]$display_name #> [1] "Transcript Amplification" #> #> $content$records[[6]]$variant_types[[1]]$so_id #> [1] "SO:0001889" #> #> $content$records[[6]]$variant_types[[1]]$description #> [1] "A feature amplification of a region containing a transcript." #> #> $content$records[[6]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001889" #> #> #> $content$records[[6]]$variant_types[[2]] #> $content$records[[6]]$variant_types[[2]]$id #> [1] 120 #> #> $content$records[[6]]$variant_types[[2]]$name #> [1] "transcript_fusion" #> #> $content$records[[6]]$variant_types[[2]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[6]]$variant_types[[2]]$so_id #> [1] "SO:0001886" #> #> $content$records[[6]]$variant_types[[2]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[6]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[6]]$civic_actionability_score #> [1] 11 #> #> $content$records[[6]]$coordinates #> $content$records[[6]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[6]]$coordinates$start #> [1] 42396490 #> #> $content$records[[6]]$coordinates$stop #> [1] 42528380 #> #> $content$records[[6]]$coordinates$reference_bases #> NULL #> #> $content$records[[6]]$coordinates$variant_bases #> NULL #> #> $content$records[[6]]$coordinates$representative_transcript #> [1] "ENST00000318522.5" #> #> $content$records[[6]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[6]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[6]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[6]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[6]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[6]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[7]] #> $content$records[[7]]$id #> [1] 171 #> #> $content$records[[7]]$entrez_name #> [1] "ALK" #> #> $content$records[[7]]$entrez_id #> [1] 238 #> #> $content$records[[7]]$name #> [1] "ALK FUSION G1202R" #> #> $content$records[[7]]$description #> [1] "ALK fusion with G1202R mutation in the ALK kinase domain was first identified in a lung adenocarcinoma patient who had progressed after 10 months of responding to crizotinib. Further characterization of this variant verified crizotinib resistance and additionally demonstrated resistance to multiple next generation ALK inhibitors including ceritinib, alectinib and brigatinib. Experiments using the HSP90 inhibitor 17-AAG have indicated potential sensitivity of EML4-ALK G1202R to this drug, suggesting this variant may be an HSP90 client protein." #> #> $content$records[[7]]$gene_id #> [1] 1 #> #> $content$records[[7]]$type #> [1] "variant" #> #> $content$records[[7]]$variant_types #> $content$records[[7]]$variant_types[[1]] #> $content$records[[7]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[7]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[7]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[7]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[7]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[7]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> $content$records[[7]]$variant_types[[2]] #> $content$records[[7]]$variant_types[[2]]$id #> [1] 47 #> #> $content$records[[7]]$variant_types[[2]]$name #> [1] "missense_variant" #> #> $content$records[[7]]$variant_types[[2]]$display_name #> [1] "Missense Variant" #> #> $content$records[[7]]$variant_types[[2]]$so_id #> [1] "SO:0001583" #> #> $content$records[[7]]$variant_types[[2]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[7]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[7]]$civic_actionability_score #> [1] 23.5 #> #> $content$records[[7]]$coordinates #> $content$records[[7]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[7]]$coordinates$start #> [1] 29443613 #> #> $content$records[[7]]$coordinates$stop #> [1] 29443613 #> #> $content$records[[7]]$coordinates$reference_bases #> [1] "C" #> #> $content$records[[7]]$coordinates$variant_bases #> [1] "T" #> #> $content$records[[7]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[7]]$coordinates$chromosome2 #> NULL #> #> $content$records[[7]]$coordinates$start2 #> NULL #> #> $content$records[[7]]$coordinates$stop2 #> NULL #> #> $content$records[[7]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[7]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[7]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[8]] #> $content$records[[8]]$id #> [1] 172 #> #> $content$records[[8]]$entrez_name #> [1] "ALK" #> #> $content$records[[8]]$entrez_id #> [1] 238 #> #> $content$records[[8]]$name #> [1] "EML4-ALK S1206Y" #> #> $content$records[[8]]$description #> [1] "" #> #> $content$records[[8]]$gene_id #> [1] 1 #> #> $content$records[[8]]$type #> [1] "variant" #> #> $content$records[[8]]$variant_types #> $content$records[[8]]$variant_types[[1]] #> $content$records[[8]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[8]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[8]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[8]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[8]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[8]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> $content$records[[8]]$variant_types[[2]] #> $content$records[[8]]$variant_types[[2]]$id #> [1] 120 #> #> $content$records[[8]]$variant_types[[2]]$name #> [1] "transcript_fusion" #> #> $content$records[[8]]$variant_types[[2]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[8]]$variant_types[[2]]$so_id #> [1] "SO:0001886" #> #> $content$records[[8]]$variant_types[[2]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[8]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[8]]$civic_actionability_score #> [1] 6 #> #> $content$records[[8]]$coordinates #> $content$records[[8]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[8]]$coordinates$start #> [1] 29443600 #> #> $content$records[[8]]$coordinates$stop #> [1] 29443600 #> #> $content$records[[8]]$coordinates$reference_bases #> [1] "G" #> #> $content$records[[8]]$coordinates$variant_bases #> [1] "T" #> #> $content$records[[8]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[8]]$coordinates$chromosome2 #> NULL #> #> $content$records[[8]]$coordinates$start2 #> NULL #> #> $content$records[[8]]$coordinates$stop2 #> NULL #> #> $content$records[[8]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[8]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[8]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[9]] #> $content$records[[9]]$id #> [1] 173 #> #> $content$records[[9]]$entrez_name #> [1] "ALK" #> #> $content$records[[9]]$entrez_id #> [1] 238 #> #> $content$records[[9]]$name #> [1] "EML4-ALK T1151INST" #> #> $content$records[[9]]$description #> [1] "The ALK fusion variant with insertion of T at amino acid 1151 was found in an ALK rearranged lung adenocarcinoma which had progressed after responding to crizotinib treatment. The mutation was absent in tumor sample taken before crizotinib treatment. Characterization of the variant using cell lines expressing EML4-ALK with 1151 T insert found the variant to be highly crizotinib resistant, and other work demonstrated resistance to next generation inhibitor alectinib, while resistance to tool compound TAE684 indicates potential resistance to the next generation ALK inhibitor ceritinib which is derived from TAE684. Other experiments suggest theraputic potential for HSP90 inhibitors, as EML4-ALK T1151 Tins sensitivity to 17-AAG has been observed." #> #> $content$records[[9]]$gene_id #> [1] 1 #> #> $content$records[[9]]$type #> [1] "variant" #> #> $content$records[[9]]$variant_types #> $content$records[[9]]$variant_types[[1]] #> $content$records[[9]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[9]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[9]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[9]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[9]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[9]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> $content$records[[9]]$variant_types[[2]] #> $content$records[[9]]$variant_types[[2]]$id #> [1] 106 #> #> $content$records[[9]]$variant_types[[2]]$name #> [1] "inframe_insertion" #> #> $content$records[[9]]$variant_types[[2]]$display_name #> [1] "Inframe Insertion" #> #> $content$records[[9]]$variant_types[[2]]$so_id #> [1] "SO:0001821" #> #> $content$records[[9]]$variant_types[[2]]$description #> [1] "An inframe non synonymous variant that inserts bases into in the coding sequence." #> #> $content$records[[9]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001821" #> #> #> #> $content$records[[9]]$civic_actionability_score #> [1] 18 #> #> $content$records[[9]]$coordinates #> $content$records[[9]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[9]]$coordinates$start #> [1] 29445271 #> #> $content$records[[9]]$coordinates$stop #> [1] 29445272 #> #> $content$records[[9]]$coordinates$reference_bases #> NULL #> #> $content$records[[9]]$coordinates$variant_bases #> [1] "CGT" #> #> $content$records[[9]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[9]]$coordinates$chromosome2 #> NULL #> #> $content$records[[9]]$coordinates$start2 #> NULL #> #> $content$records[[9]]$coordinates$stop2 #> NULL #> #> $content$records[[9]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[9]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[9]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[10]] #> $content$records[[10]]$id #> [1] 307 #> #> $content$records[[10]]$entrez_name #> [1] "ALK" #> #> $content$records[[10]]$entrez_id #> [1] 238 #> #> $content$records[[10]]$name #> [1] "EML4-ALK L1152R" #> #> $content$records[[10]]$description #> [1] "" #> #> $content$records[[10]]$gene_id #> [1] 1 #> #> $content$records[[10]]$type #> [1] "variant" #> #> $content$records[[10]]$variant_types #> $content$records[[10]]$variant_types[[1]] #> $content$records[[10]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[10]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[10]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[10]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[10]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[10]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> $content$records[[10]]$variant_types[[2]] #> $content$records[[10]]$variant_types[[2]]$id #> [1] 120 #> #> $content$records[[10]]$variant_types[[2]]$name #> [1] "transcript_fusion" #> #> $content$records[[10]]$variant_types[[2]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[10]]$variant_types[[2]]$so_id #> [1] "SO:0001886" #> #> $content$records[[10]]$variant_types[[2]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[10]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[10]]$civic_actionability_score #> [1] 10 #> #> $content$records[[10]]$coordinates #> $content$records[[10]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[10]]$coordinates$start #> [1] 29445270 #> #> $content$records[[10]]$coordinates$stop #> [1] 29445270 #> #> $content$records[[10]]$coordinates$reference_bases #> [1] "A" #> #> $content$records[[10]]$coordinates$variant_bases #> [1] "C" #> #> $content$records[[10]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[10]]$coordinates$chromosome2 #> NULL #> #> $content$records[[10]]$coordinates$start2 #> NULL #> #> $content$records[[10]]$coordinates$stop2 #> NULL #> #> $content$records[[10]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[10]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[10]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[11]] #> $content$records[[11]]$id #> [1] 308 #> #> $content$records[[11]]$entrez_name #> [1] "ALK" #> #> $content$records[[11]]$entrez_id #> [1] 238 #> #> $content$records[[11]]$name #> [1] "EML4-ALK G1269A" #> #> $content$records[[11]]$description #> [1] "The EML4-ALK G1269A mutation has been identified in non-small cell lung cancer patients resistant to crizotinib. Cell line data from multiple groups have shown this mutation enhances resistance to crizotinib treatment in vitro." #> #> $content$records[[11]]$gene_id #> [1] 1 #> #> $content$records[[11]]$type #> [1] "variant" #> #> $content$records[[11]]$variant_types #> $content$records[[11]]$variant_types[[1]] #> $content$records[[11]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[11]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[11]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[11]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[11]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[11]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> $content$records[[11]]$variant_types[[2]] #> $content$records[[11]]$variant_types[[2]]$id #> [1] 47 #> #> $content$records[[11]]$variant_types[[2]]$name #> [1] "missense_variant" #> #> $content$records[[11]]$variant_types[[2]]$display_name #> [1] "Missense Variant" #> #> $content$records[[11]]$variant_types[[2]]$so_id #> [1] "SO:0001583" #> #> $content$records[[11]]$variant_types[[2]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[11]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[11]]$civic_actionability_score #> [1] 17.5 #> #> $content$records[[11]]$coordinates #> $content$records[[11]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[11]]$coordinates$start #> [1] 29432682 #> #> $content$records[[11]]$coordinates$stop #> [1] 29432682 #> #> $content$records[[11]]$coordinates$reference_bases #> [1] "C" #> #> $content$records[[11]]$coordinates$variant_bases #> [1] "G" #> #> $content$records[[11]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[11]]$coordinates$chromosome2 #> NULL #> #> $content$records[[11]]$coordinates$start2 #> NULL #> #> $content$records[[11]]$coordinates$stop2 #> NULL #> #> $content$records[[11]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[11]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[11]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[12]] #> $content$records[[12]]$id #> [1] 352 #> #> $content$records[[12]]$entrez_name #> [1] "ALK" #> #> $content$records[[12]]$entrez_id #> [1] 238 #> #> $content$records[[12]]$name #> [1] "EML4-ALK C1156Y–L1198F" #> #> $content$records[[12]]$description #> [1] "EML4-ALK C1156Y alone is resistant to crizotinib in non-small cell lung cancer (NSCLC) which has been shown to be modulated (both increased sensitivity and resistance) by additional ALK mutations. A case report showed that an NSCLC harboring EML4-ALK C1156Y–L1198F was resistant to lorlatinib but this second mutation re-sensitized this tumor to crizotinib." #> #> $content$records[[12]]$gene_id #> [1] 1 #> #> $content$records[[12]]$type #> [1] "variant" #> #> $content$records[[12]]$variant_types #> $content$records[[12]]$variant_types[[1]] #> $content$records[[12]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[12]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[12]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[12]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[12]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[12]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> $content$records[[12]]$variant_types[[2]] #> $content$records[[12]]$variant_types[[2]]$id #> [1] 120 #> #> $content$records[[12]]$variant_types[[2]]$name #> [1] "transcript_fusion" #> #> $content$records[[12]]$variant_types[[2]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[12]]$variant_types[[2]]$so_id #> [1] "SO:0001886" #> #> $content$records[[12]]$variant_types[[2]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[12]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[12]]$civic_actionability_score #> [1] 20 #> #> $content$records[[12]]$coordinates #> $content$records[[12]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[12]]$coordinates$start #> [1] 29443625 #> #> $content$records[[12]]$coordinates$stop #> [1] 29445258 #> #> $content$records[[12]]$coordinates$reference_bases #> NULL #> #> $content$records[[12]]$coordinates$variant_bases #> NULL #> #> $content$records[[12]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[12]]$coordinates$chromosome2 #> NULL #> #> $content$records[[12]]$coordinates$start2 #> NULL #> #> $content$records[[12]]$coordinates$stop2 #> NULL #> #> $content$records[[12]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[12]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[12]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[13]] #> $content$records[[13]]$id #> [1] 499 #> #> $content$records[[13]]$entrez_name #> [1] "ALK" #> #> $content$records[[13]]$entrez_id #> [1] 238 #> #> $content$records[[13]]$name #> [1] "ALK FUSIONS" #> #> $content$records[[13]]$description #> [1] "Following the initial discovery and characterization of NPM-ALK fusion mutation in anaplastic large cell lymphoma (ALCL), EML4-ALK fusions were found to be driver mutations in a subset of lung adenocarcinomas. ALK fusions bring the C-terminal ALK kinase domain together with the N terminal region of the fusion partner, and have since been found in a range of cancers including inflammatory myofibroblastic tumor, renal cell carcinoma, diffuse large B cell lymphoma and colorectal cancer. \n\nIn a Phase I trial for crizotinib, a 92% response rate was seen in the subset of patients with a specific EML4-ALK variant, which was higher than the 57% rate in the overall ALK-rearranged population, but the subpopulation numbers were insufficient to correlate variant type with patient response. \n\nDue to restricted wild-type ALK expression, and also mild phenotypes seen in ALK knockout mice, ALK fusions are desirable targets. ALK inhibitor TAE684 was used in initial characterizations of ALK fusion cancer drivers, and crizotinib – a small molecule ATP-competitor RTK inhibitor which is highly selective for ALK and MET - has been approved as first line therapy in ALK-rearranged NSCLC. \n\nALK-rearrangement defines an NSCLC subtype that makes up 3-5% of NSCLC cases, and is characterized by higher proportions of younger patients and never smokers. EML4-ALK variant 1 is the most common ALK fusion in NSCLC and was the first to be discovered and demonstrate cancer driver properties in vitro and in mouse models. A Phase I study of crizotinib in ALK-rearranged NSCLC demonstrated an increase in overall survival when compared to standard chemotherapy. These and other initial results prompted accelerated approval for crizotinib in NSCLC. Continued clinical work demonstrated benefit with crizotinib over chemotherapy in multi-armed studies, and as first line therapy. Crizotinib was also found to remain beneficial to NSCLC patients who had progressed on crizotinib. Additionally, crizotinib was shown to increase intracranial disease control in brain metastasis occurring from ALK-rearranged NSCLC." #> #> $content$records[[13]]$gene_id #> [1] 1 #> #> $content$records[[13]]$type #> [1] "variant" #> #> $content$records[[13]]$variant_types #> $content$records[[13]]$variant_types[[1]] #> $content$records[[13]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[13]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[13]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[13]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[13]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[13]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[13]]$civic_actionability_score #> [1] 470.5 #> #> $content$records[[13]]$coordinates #> $content$records[[13]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[13]]$coordinates$start #> [1] 29415640 #> #> $content$records[[13]]$coordinates$stop #> [1] 29446394 #> #> $content$records[[13]]$coordinates$reference_bases #> NULL #> #> $content$records[[13]]$coordinates$variant_bases #> NULL #> #> $content$records[[13]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[13]]$coordinates$chromosome2 #> NULL #> #> $content$records[[13]]$coordinates$start2 #> NULL #> #> $content$records[[13]]$coordinates$stop2 #> NULL #> #> $content$records[[13]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[13]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[13]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[14]] #> $content$records[[14]]$id #> [1] 500 #> #> $content$records[[14]]$entrez_name #> [1] "ALK" #> #> $content$records[[14]]$entrez_id #> [1] 238 #> #> $content$records[[14]]$name #> [1] "EML4-ALK E20;A20" #> #> $content$records[[14]]$description #> [1] "EML4-ALK variant 2 consists of a fusion of the ALK kinase domain (exons 20-29) with EML4 exons 1-20. Variant 2 has cytoplasmic distribution and makes up ~10% of EML4-ALK fusions found in NSCLC,. Although the specific variant is not consistently reported, single cases demonstrating response to crizotinib treatment in NSCLC and a differentiated malignant neoplasm of unknown origin have been reported. In vitro, this variant has shown greater sensitivity to ALK inhibition with TAE684 and crizotinib than the EML4-ALK variants 1 (E13;A20), 3a (E6;A20) and 3b (E6ins33;A20). The variant was reported to be less stable in cells than other variants, and may be a client protein of Hsp90. Along these lines the variant has shown preclinical sensitivity to Hsp90 inhibition." #> #> $content$records[[14]]$gene_id #> [1] 1 #> #> $content$records[[14]]$type #> [1] "variant" #> #> $content$records[[14]]$variant_types #> $content$records[[14]]$variant_types[[1]] #> $content$records[[14]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[14]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[14]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[14]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[14]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[14]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[14]]$civic_actionability_score #> [1] 16.5 #> #> $content$records[[14]]$coordinates #> $content$records[[14]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[14]]$coordinates$start #> [1] 42396490 #> #> $content$records[[14]]$coordinates$stop #> [1] 42552694 #> #> $content$records[[14]]$coordinates$reference_bases #> NULL #> #> $content$records[[14]]$coordinates$variant_bases #> NULL #> #> $content$records[[14]]$coordinates$representative_transcript #> [1] "ENST00000318522.5" #> #> $content$records[[14]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[14]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[14]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[14]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[14]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[14]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[15]] #> $content$records[[15]]$id #> [1] 501 #> #> $content$records[[15]]$entrez_name #> [1] "ALK" #> #> $content$records[[15]]$entrez_id #> [1] 238 #> #> $content$records[[15]]$name #> [1] "EML4-ALK E2;A20" #> #> $content$records[[15]]$description #> [1] "" #> #> $content$records[[15]]$gene_id #> [1] 1 #> #> $content$records[[15]]$type #> [1] "variant" #> #> $content$records[[15]]$variant_types #> $content$records[[15]]$variant_types[[1]] #> $content$records[[15]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[15]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[15]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[15]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[15]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[15]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[15]]$civic_actionability_score #> [1] 1.75 #> #> $content$records[[15]]$coordinates #> $content$records[[15]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[15]]$coordinates$start #> [1] 42396490 #> #> $content$records[[15]]$coordinates$stop #> [1] 42472827 #> #> $content$records[[15]]$coordinates$reference_bases #> NULL #> #> $content$records[[15]]$coordinates$variant_bases #> NULL #> #> $content$records[[15]]$coordinates$representative_transcript #> [1] "ENST00000318522.5" #> #> $content$records[[15]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[15]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[15]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[15]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[15]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[15]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[16]] #> $content$records[[16]]$id #> [1] 503 #> #> $content$records[[16]]$entrez_name #> [1] "ALK" #> #> $content$records[[16]]$entrez_id #> [1] 238 #> #> $content$records[[16]]$name #> [1] "EML4-ALK E6;A20" #> #> $content$records[[16]]$description #> [1] "The EML4-ALK variant 3a consists of the ALK kinase domain fused to EML4 exons 1-6, while the 3b variant has an additional 33bp of intronic EML4 sequence between EML4 and ALK regions. The two variants were found to originate from a single genomic rearrangement, and 3a/3b is found in ~ 30% of EML4-ALK positive NSCLC. Variant 3a has cytoplasmic and nuclear distribution. In vitro, these variants have shown sensitivity to ALK inhibitors TAE684 and crizotinib but less sensitive than other EML4-ALK variants. The H2228 cell line contains 3a and 3b variants and is described as having cyctostatic response to ALK inhibition as opposed to apoptotic. In a study of 31 NSCLC patients with EML4-ALK rearrangements, 4/5 patients with the 3a variant showed a partial response while 1 showed progressive disease (the only PD observed). In cells the 3a variant was reported to be more stable than other variants, less sensitive to crizotinib and not to respond to Hsp90 inhibition." #> #> $content$records[[16]]$gene_id #> [1] 1 #> #> $content$records[[16]]$type #> [1] "variant" #> #> $content$records[[16]]$variant_types #> $content$records[[16]]$variant_types[[1]] #> $content$records[[16]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[16]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[16]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[16]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[16]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[16]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[16]]$civic_actionability_score #> [1] 25 #> #> $content$records[[16]]$coordinates #> $content$records[[16]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[16]]$coordinates$start #> [1] 42396490 #> #> $content$records[[16]]$coordinates$stop #> [1] 42491871 #> #> $content$records[[16]]$coordinates$reference_bases #> NULL #> #> $content$records[[16]]$coordinates$variant_bases #> NULL #> #> $content$records[[16]]$coordinates$representative_transcript #> [1] "ENST00000318522.5" #> #> $content$records[[16]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[16]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[16]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[16]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[16]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[16]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[17]] #> $content$records[[17]]$id #> [1] 512 #> #> $content$records[[17]]$entrez_name #> [1] "ALK" #> #> $content$records[[17]]$entrez_id #> [1] 238 #> #> $content$records[[17]]$name #> [1] "MUTATION" #> #> $content$records[[17]]$description #> [1] "" #> #> $content$records[[17]]$gene_id #> [1] 1 #> #> $content$records[[17]]$type #> [1] "variant" #> #> $content$records[[17]]$variant_types #> $content$records[[17]]$variant_types[[1]] #> $content$records[[17]]$variant_types[[1]]$id #> [1] 30 #> #> $content$records[[17]]$variant_types[[1]]$name #> [1] "gene_variant" #> #> $content$records[[17]]$variant_types[[1]]$display_name #> [1] "Gene Variant" #> #> $content$records[[17]]$variant_types[[1]]$so_id #> [1] "SO:0001564" #> #> $content$records[[17]]$variant_types[[1]]$description #> [1] "A sequence variant where the structure of the gene is changed." #> #> $content$records[[17]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001564" #> #> #> $content$records[[17]]$variant_types[[2]] #> $content$records[[17]]$variant_types[[2]]$id #> [1] 160 #> #> $content$records[[17]]$variant_types[[2]]$name #> [1] "gain_of_function_variant" #> #> $content$records[[17]]$variant_types[[2]]$display_name #> [1] "Gain Of Function Variant" #> #> $content$records[[17]]$variant_types[[2]]$so_id #> [1] "SO:0002053" #> #> $content$records[[17]]$variant_types[[2]]$description #> [1] "A sequence variant whereby new or enhanced function is conferred on the gene product." #> #> $content$records[[17]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0002053" #> #> #> #> $content$records[[17]]$civic_actionability_score #> [1] 20 #> #> $content$records[[17]]$coordinates #> $content$records[[17]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[17]]$coordinates$start #> [1] 29415640 #> #> $content$records[[17]]$coordinates$stop #> [1] 30144432 #> #> $content$records[[17]]$coordinates$reference_bases #> NULL #> #> $content$records[[17]]$coordinates$variant_bases #> NULL #> #> $content$records[[17]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[17]]$coordinates$chromosome2 #> NULL #> #> $content$records[[17]]$coordinates$start2 #> NULL #> #> $content$records[[17]]$coordinates$stop2 #> NULL #> #> $content$records[[17]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[17]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[17]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[18]] #> $content$records[[18]]$id #> [1] 513 #> #> $content$records[[18]]$entrez_name #> [1] "ALK" #> #> $content$records[[18]]$entrez_id #> [1] 238 #> #> $content$records[[18]]$name #> [1] "NPM-ALK" #> #> $content$records[[18]]$description #> [1] "" #> #> $content$records[[18]]$gene_id #> [1] 1 #> #> $content$records[[18]]$type #> [1] "variant" #> #> $content$records[[18]]$variant_types #> $content$records[[18]]$variant_types[[1]] #> $content$records[[18]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[18]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[18]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[18]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[18]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[18]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[18]]$civic_actionability_score #> [1] 27 #> #> $content$records[[18]]$coordinates #> $content$records[[18]]$coordinates$chromosome #> [1] "5" #> #> $content$records[[18]]$coordinates$start #> [1] 170814120 #> #> $content$records[[18]]$coordinates$stop #> [1] 170818803 #> #> $content$records[[18]]$coordinates$reference_bases #> NULL #> #> $content$records[[18]]$coordinates$variant_bases #> NULL #> #> $content$records[[18]]$coordinates$representative_transcript #> [1] "ENST00000517671.1" #> #> $content$records[[18]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[18]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[18]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[18]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[18]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[18]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[19]] #> $content$records[[19]]$id #> [1] 514 #> #> $content$records[[19]]$entrez_name #> [1] "ALK" #> #> $content$records[[19]]$entrez_id #> [1] 238 #> #> $content$records[[19]]$name #> [1] "RANBP2-ALK" #> #> $content$records[[19]]$description #> [1] "" #> #> $content$records[[19]]$gene_id #> [1] 1 #> #> $content$records[[19]]$type #> [1] "variant" #> #> $content$records[[19]]$variant_types #> $content$records[[19]]$variant_types[[1]] #> $content$records[[19]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[19]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[19]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[19]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[19]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[19]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[19]]$civic_actionability_score #> [1] 10 #> #> $content$records[[19]]$coordinates #> $content$records[[19]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[19]]$coordinates$start #> [1] 109335937 #> #> $content$records[[19]]$coordinates$stop #> [1] 109375004 #> #> $content$records[[19]]$coordinates$reference_bases #> NULL #> #> $content$records[[19]]$coordinates$variant_bases #> NULL #> #> $content$records[[19]]$coordinates$representative_transcript #> [1] "ENST00000283195.6" #> #> $content$records[[19]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[19]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[19]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[19]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[19]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[19]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[20]] #> $content$records[[20]]$id #> [1] 520 #> #> $content$records[[20]]$entrez_name #> [1] "ALK" #> #> $content$records[[20]]$entrez_id #> [1] 238 #> #> $content$records[[20]]$name #> [1] "CLTC-ALK" #> #> $content$records[[20]]$description #> [1] "The t(2;17)(p23;q23) translocation results in the CLTC-ALK fusion protein, the most common ALK fusion observed in diffuse large B cell lymphoma (DLBCL). ALK-rearranged DLBCL is less responsive to CHOP chemotherapy. Preclinical work indicates that CLTC-ALK DLBCL is responsive to ALK inhibition in cell lines and mouse models, and two case studies show short response followed by progression when heavily pretreated and advanced ALK-positive DLBCL is treated with crizotinib (one case CLTC-ALK, one case an unknown ALK fusion)." #> #> $content$records[[20]]$gene_id #> [1] 1 #> #> $content$records[[20]]$type #> [1] "variant" #> #> $content$records[[20]]$variant_types #> $content$records[[20]]$variant_types[[1]] #> $content$records[[20]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[20]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[20]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[20]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[20]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[20]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[20]]$civic_actionability_score #> [1] 19 #> #> $content$records[[20]]$coordinates #> $content$records[[20]]$coordinates$chromosome #> [1] "17" #> #> $content$records[[20]]$coordinates$start #> [1] 57697219 #> #> $content$records[[20]]$coordinates$stop #> [1] 57768072 #> #> $content$records[[20]]$coordinates$reference_bases #> NULL #> #> $content$records[[20]]$coordinates$variant_bases #> NULL #> #> $content$records[[20]]$coordinates$representative_transcript #> [1] "ENST00000269122.3" #> #> $content$records[[20]]$coordinates$chromosome2 #> [1] "2" #> #> $content$records[[20]]$coordinates$start2 #> [1] 29415640 #> #> $content$records[[20]]$coordinates$stop2 #> [1] 29446394 #> #> $content$records[[20]]$coordinates$representative_transcript2 #> [1] "ENST00000389048.3" #> #> $content$records[[20]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[20]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[21]] #> $content$records[[21]]$id #> [1] 527 #> #> $content$records[[21]]$entrez_name #> [1] "ALK" #> #> $content$records[[21]]$entrez_id #> [1] 238 #> #> $content$records[[21]]$name #> [1] "ALK FUSION I1171" #> #> $content$records[[21]]$description #> [1] "Multiple case reports indicate that the I1171T missense mutation in ALK-rearranged non-small cell lung cancer (NSCLC) confers resistance to crizotinib and alectinib but is sensitive to ceritinib treatment. These results have been validated in vitro. In vitro evidence indicates this mutation interferes with alectinib binding the active site of ALK and may explain the sensitivity to the structurally distinct ALK inhibitor ceritinib." #> #> $content$records[[21]]$gene_id #> [1] 1 #> #> $content$records[[21]]$type #> [1] "variant" #> #> $content$records[[21]]$variant_types #> $content$records[[21]]$variant_types[[1]] #> $content$records[[21]]$variant_types[[1]]$id #> [1] 120 #> #> $content$records[[21]]$variant_types[[1]]$name #> [1] "transcript_fusion" #> #> $content$records[[21]]$variant_types[[1]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[21]]$variant_types[[1]]$so_id #> [1] "SO:0001886" #> #> $content$records[[21]]$variant_types[[1]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[21]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> $content$records[[21]]$variant_types[[2]] #> $content$records[[21]]$variant_types[[2]]$id #> [1] 47 #> #> $content$records[[21]]$variant_types[[2]]$name #> [1] "missense_variant" #> #> $content$records[[21]]$variant_types[[2]]$display_name #> [1] "Missense Variant" #> #> $content$records[[21]]$variant_types[[2]]$so_id #> [1] "SO:0001583" #> #> $content$records[[21]]$variant_types[[2]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[21]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[21]]$civic_actionability_score #> [1] 42.5 #> #> $content$records[[21]]$coordinates #> $content$records[[21]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[21]]$coordinates$start #> [1] 29445213 #> #> $content$records[[21]]$coordinates$stop #> [1] 29445213 #> #> $content$records[[21]]$coordinates$reference_bases #> [1] "A" #> #> $content$records[[21]]$coordinates$variant_bases #> [1] "G" #> #> $content$records[[21]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[21]]$coordinates$chromosome2 #> NULL #> #> $content$records[[21]]$coordinates$start2 #> NULL #> #> $content$records[[21]]$coordinates$stop2 #> NULL #> #> $content$records[[21]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[21]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[21]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[22]] #> $content$records[[22]]$id #> [1] 528 #> #> $content$records[[22]]$entrez_name #> [1] "ALK" #> #> $content$records[[22]]$entrez_id #> [1] 238 #> #> $content$records[[22]]$name #> [1] "EML4-ALK V1180L" #> #> $content$records[[22]]$description #> [1] "The V1180L missense mutation was identified in a mutagenesis screen to find mutations that conferred resistance to alectinib in a non-small cell lung cancer cell line. This mutation shows resistance to crizotinib and alectinib but sensitivity to TAE684, ceritinib and more mild sensitivity to brigatinib. Similar to I1171T, it resides in the ATP pocket of ALK and likely interferes with alectinib and crizotinib binding as a mechanism of resistance." #> #> $content$records[[22]]$gene_id #> [1] 1 #> #> $content$records[[22]]$type #> [1] "variant" #> #> $content$records[[22]]$variant_types #> $content$records[[22]]$variant_types[[1]] #> $content$records[[22]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[22]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[22]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[22]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[22]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[22]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> $content$records[[22]]$variant_types[[2]] #> $content$records[[22]]$variant_types[[2]]$id #> [1] 120 #> #> $content$records[[22]]$variant_types[[2]]$name #> [1] "transcript_fusion" #> #> $content$records[[22]]$variant_types[[2]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[22]]$variant_types[[2]]$so_id #> [1] "SO:0001886" #> #> $content$records[[22]]$variant_types[[2]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[22]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[22]]$civic_actionability_score #> [1] 13 #> #> $content$records[[22]]$coordinates #> $content$records[[22]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[22]]$coordinates$start #> [1] 29443679 #> #> $content$records[[22]]$coordinates$stop #> [1] 29443679 #> #> $content$records[[22]]$coordinates$reference_bases #> [1] "C" #> #> $content$records[[22]]$coordinates$variant_bases #> [1] "G" #> #> $content$records[[22]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[22]]$coordinates$chromosome2 #> NULL #> #> $content$records[[22]]$coordinates$start2 #> NULL #> #> $content$records[[22]]$coordinates$stop2 #> NULL #> #> $content$records[[22]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[22]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[22]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[23]] #> $content$records[[23]]$id #> [1] 549 #> #> $content$records[[23]]$entrez_name #> [1] "ALK" #> #> $content$records[[23]]$entrez_id #> [1] 238 #> #> $content$records[[23]]$name #> [1] "F1245C" #> #> $content$records[[23]]$description #> [1] "" #> #> $content$records[[23]]$gene_id #> [1] 1 #> #> $content$records[[23]]$type #> [1] "variant" #> #> $content$records[[23]]$variant_types #> $content$records[[23]]$variant_types[[1]] #> $content$records[[23]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[23]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[23]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[23]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[23]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[23]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> #> $content$records[[23]]$civic_actionability_score #> [1] 10.5 #> #> $content$records[[23]]$coordinates #> $content$records[[23]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[23]]$coordinates$start #> [1] 29436859 #> #> $content$records[[23]]$coordinates$stop #> [1] 29436859 #> #> $content$records[[23]]$coordinates$reference_bases #> [1] "A" #> #> $content$records[[23]]$coordinates$variant_bases #> [1] "C" #> #> $content$records[[23]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[23]]$coordinates$chromosome2 #> NULL #> #> $content$records[[23]]$coordinates$start2 #> NULL #> #> $content$records[[23]]$coordinates$stop2 #> NULL #> #> $content$records[[23]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[23]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[23]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[24]] #> $content$records[[24]]$id #> [1] 550 #> #> $content$records[[24]]$entrez_name #> [1] "ALK" #> #> $content$records[[24]]$entrez_id #> [1] 238 #> #> $content$records[[24]]$name #> [1] "DEL4-11" #> #> $content$records[[24]]$description #> [1] "" #> #> $content$records[[24]]$gene_id #> [1] 1 #> #> $content$records[[24]]$type #> [1] "variant" #> #> $content$records[[24]]$variant_types #> $content$records[[24]]$variant_types[[1]] #> $content$records[[24]]$variant_types[[1]]$id #> [1] 107 #> #> $content$records[[24]]$variant_types[[1]]$name #> [1] "inframe_deletion" #> #> $content$records[[24]]$variant_types[[1]]$display_name #> [1] "Inframe Deletion" #> #> $content$records[[24]]$variant_types[[1]]$so_id #> [1] "SO:0001822" #> #> $content$records[[24]]$variant_types[[1]]$description #> [1] "An inframe non synonymous variant that deletes bases from the coding sequence." #> #> $content$records[[24]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001822" #> #> #> #> $content$records[[24]]$civic_actionability_score #> [1] 3 #> #> $content$records[[24]]$coordinates #> $content$records[[24]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[24]]$coordinates$start #> [1] 29497965 #> #> $content$records[[24]]$coordinates$stop #> [1] 29754982 #> #> $content$records[[24]]$coordinates$reference_bases #> NULL #> #> $content$records[[24]]$coordinates$variant_bases #> NULL #> #> $content$records[[24]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[24]]$coordinates$chromosome2 #> NULL #> #> $content$records[[24]]$coordinates$start2 #> NULL #> #> $content$records[[24]]$coordinates$stop2 #> NULL #> #> $content$records[[24]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[24]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[24]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> $content$records[[25]] #> $content$records[[25]]$id #> [1] 551 #> #> $content$records[[25]]$entrez_name #> [1] "ALK" #> #> $content$records[[25]]$entrez_id #> [1] 238 #> #> $content$records[[25]]$name #> [1] "ALK FUSION F1245C" #> #> $content$records[[25]]$description #> [1] "In neuroblastoma, F1245 is one of three hotspot ALK mutations found at a high frequency. In a case study, a pretreated non-small cell lung cancer (NSCLC) patient with EML4-ALK F1245C mutation responded well to ceritinib after slow disease progression during crizotinib treatment. Crizotinib resistance was attributed to the F1245C mutation, although the ALK-rearrangement was not sequenced prior to crizotinib treatment. The patient's slow onset of disease progression during crizotinib treatment mirrors preclinical findings that indicate ALK-fusion with F1245C has moderate resistance to crizotinib compared to the fusion alone." #> #> $content$records[[25]]$gene_id #> [1] 1 #> #> $content$records[[25]]$type #> [1] "variant" #> #> $content$records[[25]]$variant_types #> $content$records[[25]]$variant_types[[1]] #> $content$records[[25]]$variant_types[[1]]$id #> [1] 47 #> #> $content$records[[25]]$variant_types[[1]]$name #> [1] "missense_variant" #> #> $content$records[[25]]$variant_types[[1]]$display_name #> [1] "Missense Variant" #> #> $content$records[[25]]$variant_types[[1]]$so_id #> [1] "SO:0001583" #> #> $content$records[[25]]$variant_types[[1]]$description #> [1] "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved." #> #> $content$records[[25]]$variant_types[[1]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001583" #> #> #> $content$records[[25]]$variant_types[[2]] #> $content$records[[25]]$variant_types[[2]]$id #> [1] 120 #> #> $content$records[[25]]$variant_types[[2]]$name #> [1] "transcript_fusion" #> #> $content$records[[25]]$variant_types[[2]]$display_name #> [1] "Transcript Fusion" #> #> $content$records[[25]]$variant_types[[2]]$so_id #> [1] "SO:0001886" #> #> $content$records[[25]]$variant_types[[2]]$description #> [1] "A feature fusion where the deletion brings together transcript regions." #> #> $content$records[[25]]$variant_types[[2]]$url #> [1] "http://www.sequenceontology.org/browser/current_svn/term/SO:0001886" #> #> #> #> $content$records[[25]]$civic_actionability_score #> [1] 14.5 #> #> $content$records[[25]]$coordinates #> $content$records[[25]]$coordinates$chromosome #> [1] "2" #> #> $content$records[[25]]$coordinates$start #> [1] 29436859 #> #> $content$records[[25]]$coordinates$stop #> [1] 29436859 #> #> $content$records[[25]]$coordinates$reference_bases #> [1] "A" #> #> $content$records[[25]]$coordinates$variant_bases #> [1] "C" #> #> $content$records[[25]]$coordinates$representative_transcript #> [1] "ENST00000389048.3" #> #> $content$records[[25]]$coordinates$chromosome2 #> NULL #> #> $content$records[[25]]$coordinates$start2 #> NULL #> #> $content$records[[25]]$coordinates$stop2 #> NULL #> #> $content$records[[25]]$coordinates$representative_transcript2 #> NULL #> #> $content$records[[25]]$coordinates$ensembl_version #> [1] 75 #> #> $content$records[[25]]$coordinates$reference_build #> [1] "GRCh37" #> #> #> #> #> #> $url #> [1] "https://civicdb.org/api/genes/1/variants" #> #> $response #> Response [https://civicdb.org/api/genes/1/variants] #> Date: 2019-09-03 16:44 #> Status: 200 #> Content-Type: application/json; charset=utf-8 #> Size: 32.1 kB #> #> #> attr(,"class") #> [1] "civic_api"