Skip to content

Instantly share code, notes, and snippets.

@fwip
Last active August 29, 2015 14:17
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 fwip/2e17bb2ec194f929439c to your computer and use it in GitHub Desktop.
Save fwip/2e17bb2ec194f929439c to your computer and use it in GitHub Desktop.
qsub -cwd -N "u-H3MHT" -pe threads 8 -V -S /bin/bash <<'__FASTQ__'
set -x -e -o pipefail
cd "/net/glados/solexa_data/150109_NS500372_0058_AH3MHTBGXX"
bcl2fastq \
--input-dir "/net/glados/solexa_data/150109_NS500372_0058_AH3MHTBGXX/Data/Intensities/BaseCalls" \
--use-bases-mask "y36,I6n,y36" \
--output-dir "/net/glados/solexa_data/150109_NS500372_0058_AH3MHTBGXX/fastq" \
--with-failed-reads \
--barcode-mismatches "0" \
--loading-threads $(( NSLOTS / 4 + 1 )) \
--writing-threads $(( NSLOTS / 4 + 1 )) \
--demultiplexing-threads $(( NSLOTS / 2 + 1 )) \
--processing-threads $(( NSLOTS / 3 + 1 ))
__FASTQ__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment