Skip to content

Instantly share code, notes, and snippets.

@al2na
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save al2na/9a6ae3d32b141939da7b to your computer and use it in GitHub Desktop.
Save al2na/9a6ae3d32b141939da7b to your computer and use it in GitHub Desktop.
#!/bin/bash
#$ -N run_bowtie
#$ -cwd
#$ -pe smp 2
#$ -l h_vmem=6G
infile=/data/bioinfo/genome_data/sample.ce10.fastq
outfile=~/my.alignment.sam
btindex=/data/bioinfo/genome_data/Caenorhabditis_elegans/UCSC/ce10/Sequence/BowtieIndex/genome
bowtie --chunkmbs 300 --best -m 1 -p 2 --phred33 -q $btindex $infile -S $outfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment