The code I ran was here, so nothing fancy.
breseq -l 110 -o RifR_align -r Big_burk_assembly.fasta RifRNano_nanopore.fastq.gz
This was the output.
NOW PROCESSING Read alignment to reference genome
[system] bowtie2-build -q "RifR_align/data/reference.fasta" "RifR_align/02_reference_alignment/reference"
[system] bowtie2 -t --no-unal -p 1 -L 31 --ma 1 --mp 3 --np 0 --rdg 2,3 --rfg 2,3 --ignore- quals --local -i S,1,0.25 --score-min L,1,0.9 -k 2000 --reorder -x "RifR_align/02_reference_alignment/reference" -U "RifR_align/01_sequence_conversion/RifRNano_nanopore.converted.fastq" -S "RifR_align/02_reference_alignment/RifRNano_nanopore.stage1.sam" --un "RifR_align/02_reference_alignment/RifRNano_nanopore.stage1.unmatched.fastq"
Time loading reference: 00:00:00
Time loading forward index: 00:00:00
Time loading mirror index: 00:00:00
Killed
Use of uninitialized value $l in scalar chomp at /home/lts/miniconda3/envs/assemblers/bin/bowtie2 line 588, <BT> line 4626.
Use of uninitialized value $l in substitution (s///) at /home/lts/miniconda3/envs/assemblers/bin/bowtie2 line 589, <BT> line 4626.
Use of uninitialized value $l in print at /home/lts/miniconda3/envs/assemblers/bin/bowtie2 line 593, <BT> line 4626.
(ERR): bowtie2-align exited with value 137
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!> FATAL ERROR <!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Error running command:
[system] bowtie2 -t --no-unal -p 1 -L 31 --ma 1 --mp 3 --np 0 --rdg 2,3 --rfg 2,3 --ignore-quals --local -i S,1,0.25 --score-min L,1,0.9 -k 2000 --reorder -x "RifR_align/02_reference_alignment/reference" -U "RifR_align/01_sequence_conversion/RifRNano_nanopore.converted.fastq" -S "RifR_align/02_reference_alignment/RifRNano_nanopore.stage1.sam" --un "RifR_align/02_reference_alignment/RifRNano_nanopore.stage1.unmatched.fastq"
Result code: 35072
FILE: libbreseq/common.h LINE: 1411
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!> STACK TRACE <!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Backtrace with 6 stack frames.
breseq(+0x44cf4) [0x56102c3c3cf4]
breseq(+0x4a4f1) [0x56102c3c94f1]
breseq(+0x6d142) [0x56102c3ec142]
breseq(+0x36cc4) [0x56102c3b5cc4]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3) [0x7f71ba61e0b3]
breseq(+0x40559) [0x56102c3bf559]
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
The programs seemed to have no trouble aligning the reference genome, however the Bowtie2 package is throwing error code 137 and terminating the program.
Killedmessage you get suggests the process was killed by the system because it was taking too much RAM. It could be that all the other errors are just because the first was killed. Does it run through if you use a smaller dataset? – terdon Dec 05 '22 at 09:48