blahah / transrate

Understand your transcriptome assembly
http://hibberdlab.com/transrate
Other
100 stars 34 forks source link

What does this error mean? Error: option '-r' specified multiple times #144

Closed amabdelhaliem closed 9 years ago

blahah commented 9 years ago

It means exactly what it says - that you specified the -r argument multiple times in the same command. Can you paste your command here?

amabdelhaliem commented 9 years ago

WOW that's really a quick response! this is the command causing the problem: ~/programs/transrate-1.0.0-linux-x86_64/transrate --assembly ~/db/Fo2-Fo3-deNovo/trinity_out_dir/Trinity.fasta --left left.fq --right right.fq -threads 30 --outfile Transrate_out

amabdelhaliem commented 9 years ago

thanks.

blahah commented 9 years ago

the problem is that you used only a single - before threads - it should be --threads. Arguments with a single - are treated as single-letters arguments, so it was interpreted as -t -h -r -e -a -d -s :)

The full command you want is...

~/programs/transrate-1.0.0-linux-x86_64/transrate --assembly ~/db/Fo2-Fo3-deNovo/trinity_out_dir/Trinity.fasta --left left.fq --right right.fq --threads 30 --outfile Transrate_out
amabdelhaliem commented 9 years ago

Loading assembly :) fantastic, you are right, thanks Richard.

blahah commented 9 years ago

great! enjoy transrate :)