Code:
bowtie2 [options]* -x <bt2-idx> {-1 <m1> -2 <m2> | -U <r>} -S [<hit>]
It looks like you haven't specified an index file on the command line, or the index is attached to the wrong arguments. Perhaps something like this would work better (assuming all_other_rna is your bowtie2 index generated with bowtie2-build):
Code:
bowtie2 --score-min C,-1,0 --mp -1,-1 -x all_other_rna -S /home/vishwesh/soft/TLL28_GTAGAG_L004_R1_001_c2.fastaq > test.sam
Leave a comment: