-
Notifications
You must be signed in to change notification settings - Fork 5
No such file or directory at /usr/local/src/STAR-Fusion/PerlLib/Pipeliner.pm line 181 #3
Description
The Docker container tutorial isn't working for me. I successfully ran:
docker run --rm -it -v pwd :/data trinityctat/ctatfusion:latest bash
Once the container was pulled, I successfully ran...
${STAR_FUSION_HOME}/FusionFilter/prep_genome_lib.pl \ --genome_fa minigenome.fa \ --gtf minigenome.gtf \ --fusion_annot_lib CTAT_HumanFusionLib.mini.dat.gz
...with no errors. However, when running the following command...
${STAR_FUSION_HOME}/STAR-Fusion \ --left_fq rnaseq_1.fastq.gz \ --right_fq rnaseq_2.fastq.gz \ --genome_lib_dir ctat_genome_lib_build_dir
...I ran into an error which I'm not sure how to resolve.
root@50aaf3eb3bd1:/data# ${STAR_FUSION_HOME}/STAR-Fusion --left_fq rnaseq_1.fastq.gz --right_fq rnaseq_2.fastq.gz --genome_lib_dir ctat_genome_lib_build_dir
${STAR_FUSION_HOME}/STAR-Fusion --left_fq rnaseq_1.fastq.gz --right_fq rnaseq_2.fastq.gz --genome_lib_dir ctat_genome_lib_build_dir
* Running CMD: /usr/local/bin/STAR --genomeDir /data/ctat_genome_lib_build_dir/ref_genome.fa.star.idx --outReadsUnmapped None --chimSegmentMin 12 --chimJunctionOverhangMin 12 --chimOutJunctionFormat 1 --alignSJDBoverhangMin 10 --alignMatesGapMax 100000 --alignIntronMax 100000 --alignSJstitchMismatchNmax 5 -1 5 5 --runThreadN 4 --outSAMstrandField intronMotif --outSAMunmapped Within --outSAMtype BAM Unsorted --readFilesIn /data/rnaseq_1.fastq.gz /data/rnaseq_2.fastq.gz --outSAMattrRGline ID:GRPundef --chimMultimapScoreRange 10 --chimMultimapNmax 10 --chimNonchimScoreDropMin 10 --peOverlapNbasesMin 12 --peOverlapMMp 0.1 --genomeLoad NoSharedMemory --twopassMode Basic --readFilesCommand 'gunzip -c'
Nov 23 20:37:50 ..... started STAR run
Nov 23 20:37:50 ..... loading genome
Nov 23 20:37:59 ..... started 1st pass mapping
Nov 23 20:40:06 ..... finished 1st pass mapping
Nov 23 20:40:06 ..... inserting junctions into the genome indices
Killed
Error, cmd: /usr/local/bin/STAR --genomeDir /data/ctat_genome_lib_build_dir/ref_genome.fa.star.idx --outReadsUnmapped None --chimSegmentMin 12 --chimJunctionOverhangMin 12 --chimOutJunctionFormat 1 --alignSJDBoverhangMin 10 --alignMatesGapMax 100000 --alignIntronMax 100000 --alignSJstitchMismatchNmax 5 -1 5 5 --runThreadN 4 --outSAMstrandField intronMotif --outSAMunmapped Within --outSAMtype BAM Unsorted --readFilesIn /data/rnaseq_1.fastq.gz /data/rnaseq_2.fastq.gz --outSAMattrRGline ID:GRPundef --chimMultimapScoreRange 10 --chimMultimapNmax 10 --chimNonchimScoreDropMin 10 --peOverlapNbasesMin 12 --peOverlapMMp 0.1 --genomeLoad NoSharedMemory --twopassMode Basic --readFilesCommand 'gunzip -c' died with ret 35072 No such file or directory at /usr/local/src/STAR-Fusion/PerlLib/Pipeliner.pm line 181.
Pipeliner::run(Pipeliner=HASH(0x1572cd0)) called at /usr/local/src/STAR-Fusion/STAR-Fusion line 862
main::run_STAR(Pipeliner=HASH(0x1572cd0), "/data/rnaseq_1.fastq.gz", "/data/rnaseq_2.fastq.gz", "") called at /usr/local/src/STAR-Fusion/STAR-Fusion line 509
I went to the file /usr/local/src/STAR-Fusion/PerlLib/Pipeliner.pm inside the Docker container, and that exact file was, in fact, there. I'm not sure exactly what the reason for the above error might be, since I followed the instructions exactly.
Any help would be much appreciated!
Thanks,
Michael