I am working with HTGTS Transloc-pipeline. While working with the example dataset, I managed to run the first two steps TranslocPreprocess.pl and TranslocWrapper.pl) and got the desired output files (tlx files)
TranslocPreprocess.pl tutorialmetadata.txt preprocess/ --read1 pooledR1.fq.gz --read2 pooledR2.fq.gz TranslocWrapper.pl tutorialmetadata.txt preprocess/ results/ --threads 2
In the next step, while running TranslocHotSpots.R with command-
$ TranslocHotSpots.R /scratch/royr6/results/RAG1CSRep1/RAG1CSRep1result.tlx /scratch/royr6/results/RAG1CSRep1/output I kept getting this error message-
Error in .make_assembly_report_URL(assembly_accession) :
don't know where to find assembly report for GCF_000001405.13
Calls: Seqinfo ... FUN -> fetch_assembly_report -> .make_assembly_report_URL
On looking around, I find that this error is associated with GenomeInfoDb (https://rdrr.io/bioc/GenomeInfoDb/src/R/assembly-utils.R) as I get the same message when I type this in R-
> BiocManager::install(c("GenomeInfoDb","BSgenome"))
> options(download.file.method="libcurl")
> library("GenomeInfoDb")
> library("BSgenome)
> GenomeInfoDb::Seqinfo(genome = "hg19")
Error in .make_assembly_report_URL(assembly_accession) :
don't know where to find assembly report for GCF_000001405.13
I am stuck and would really appreciate any help in this regard.
Hi,
2 problems with your post:
The tag you used (software error) is too general. Please use a package specific tag (GenomeInfoDb in this case). This will help other users of the support site find questions/answers about the package and will notify the GenomeInfoDb maintainers that a questions was asked about this package.
Please show the code you used that generates the error you got. Ideally you should try to provide a minimal self-contained working example. And also don't forget to provide your
sessionInfo()
.More details about these things in our Posting Guide (make sure you read it).
Thanks,
H.