CRI-iAtlas / iatlas-app

R Shiny app for CRI iAtlas, an interactive web portal for exploring immuno-oncology data. (iAtlas portal 2022 and beyond)
Other
12 stars 3 forks source link

gwas germline module broken in igvShiny version 1.5.1 #237

Closed wfulp closed 1 year ago

wfulp commented 1 year ago

The gwas germline tracks are currently broken in the iAtlas app. This is due to the version of igvShiny that's in the renv.lock file no longer working as expected.

In v1.5.1:

> igvShiny::parseAndValidateGenomeSpec(genomeName="hg19",  initialLocus="all")

Error in igvShiny::parseAndValidateGenomeSpec(genomeName = "hg19", initialLocus = "all") : 
  Your genome 'hg19' is not currently supported
Currently supported: 

However in the current version on Github (v1.5.9005) it works as intended, and works how it used to work in this package/app. I think this is due to a change in the json file it read that broke the old code in v1.5.1.

> igvShiny::parseAndValidateGenomeSpec(genomeName="hg19",  initialLocus="all")
$stockGenome
[1] TRUE

$dataMode
[1] NA

$validated
[1] TRUE

$genomeName
[1] "hg19"

$initialLocus
[1] "all"

$fasta
[1] NA

$fastaIndex
[1] NA

$annotation
[1] NA

MicrosoftTeams-image (9)

heimannch commented 1 year ago

Hi @wfulp. Thanks for reaching out and using iAtlas! This issue has been fixed, you should be able to see the IGV plot in the Germline Analysis module.

wfulp commented 1 year ago

Hi @wfulp.

Thanks for reaching out and using iAtlas! This issue has been fixed, you should be able to see the IGV plot in the Germline Analysis module.

Thanks. The germline module is working great now.