You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When "GRCh38 [Ensembl]" is selected in the UI, the backend run_job.sh receives the genome ID Homo_sapiens/Ensembl/GRCh38 .... but ultimately splits this on / to pass --genome GRCh38 to nextflow run. Since nf-core/rnaseq (3.2) defaults to using the NCBI reference, we are actually using the version pulled from s3://ngi-igenomes/igenomes/Homo_sapiens/NCBI/GRCh38 rather then using Ensembl. This is because there is no GRCh38 Ensembl release in the iGenomes collection.
Several possible solutions:
Change the UI for nf-core/rnaseq to only offer the NCBI human reference (and defaults for other organisms)
Use the local Homo_sapiens/Ensembl/GRCh38 reference when "GRCh38 [Ensembl]" is selected
Avoid using iGenomes short IDs altogether (GRCh38), instead always map Homo_sapiens/Ensembl/GRCh38 to the locally cached reference (or pull from Ensembl on demand if missing, as per rnasik).
When "GRCh38 [Ensembl]" is selected in the UI, the backend
run_job.sh
receives the genome IDHomo_sapiens/Ensembl/GRCh38
.... but ultimately splits this on/
to pass--genome GRCh38
tonextflow run
. Since nf-core/rnaseq (3.2) defaults to using the NCBI reference, we are actually using the version pulled froms3://ngi-igenomes/igenomes/Homo_sapiens/NCBI/GRCh38
rather then using Ensembl. This is because there is no GRCh38 Ensembl release in the iGenomes collection.Several possible solutions:
Homo_sapiens/Ensembl/GRCh38
reference when "GRCh38 [Ensembl]" is selectedHomo_sapiens/Ensembl/GRCh38
to the locally cached reference (or pull from Ensembl on demand if missing, as per rnasik).The text was updated successfully, but these errors were encountered: