Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning
titleSubmit to the TACC queue or run in an idev shell

Create a commands file and use launcher_creator.py followed by qsub.

launcher_creator

.

py -n "bowtie2" --time 00:10:00

Expand
titleclick here for a hint before getting the answer

 

launcher_creator.py -h will give you insight to how to use that command.

Code Block
languagebash
titleClick here for the specific launcher_creator.py commands
collapsetrue
Code Block
languagebash
titlecommands for the commands file if you can't work them out yourself
collapsetrue
bowtie2 -t -x bowtie2/NC_012967.1 -1 SRR030257_1.fastq -2 SRR030257_2.fastq -S bowtie2/SRR030257.sam  # the -t command is not required for the mapping, but it can be particularly informative when you begin comparing different mappers
Code Block
languagebash
titleClick here for the specific launcher_creator.py commands
collapsetrue
launcher_creator.py -n "bowtie2" -t 00:10:00

 

 

 

 

Your final output file is in SAM format. It's just a text file, so you can peek at it and see what it's like inside. Two warnings though:

...