Versions Compared

Key

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

...

This should also go pretty fast: you . You can see the resulting files using ls like before.

...

Code Block
cd $SCRATCH/core_ngs/alignment
ln -s -f $WORK/core_ngs/references/bt2/vibCho vibCho

In the previous exercise, we set specific local alignment parameters for bowtie2 that took into account the fact that the dataset was derived from small RNA.  However, in this case the Note that here the data is from standard mRNA sequencing, meaning that the DNA fragments are typically longer than the reads.  There There is likely to be very little contamination that would require using a local rather than global alignment, or many other pre-processing steps (e.g. adapter trimming).  ThusThus, we will run bowtie2 with default parameters, omitting any options other than the input, output, and reference index.  The The command would look like this:

...

Create a commands file called bt2_vibCho.cmds with this task definition then generate and submit a batch job for it (time 1 hour, normal development queue).

Expand
titleWhat's going on?

Use nano to create the bt2_vibCho.cmds file. Then:

Code Block
languagebash
titleLocal bowti2 alignment of miRNA data
launcher_creator.py -n bt2_vibCho -j bt2_vibCho.cmds -t 01:00:00 -q normal
sbatch bt2_vibCho.slurm; showq -u

When the job is complete you should have a cholera_rnaseq.sam file that you can examine using whatever commands you like.  In the past two exercises, we have In the previous exercise we explored a few different sorts of commands that you might run on this file to get different sorts kinds of information.  Those Those commands will provide similar information here , since this file is also in SAM/BAM format.  In In the last exercise, we will come back to this SAM file (and the others) to explore ways to compress them effectively and to extract basic quality statistics.

...