Skip to content
Shintaro Katayama edited this page Apr 22, 2015 · 40 revisions

Run on UPPMAX

Installation

git clone -b v3dev https://github.com/shka/STRTprep.git STRTprep3.test
cd STRTprep3.test
bin/install_uppmax.sh

Protocol

  • Step 1: (Copy pre-build indexes, or) build indexes of reference genome and transcriptome, like as
sbatch -A bXXXXXXX -t 12:00:00 -p core -n 1 <<EOF
#!/usr/bin/env bash
. bin/setup_uppmax.sh
bin/index_hg19_ercc92_ynbA_u13369.sh
bin/index_refGene.sh hg19 src/ebwt/hg19_ercc_ynbA_u13369/ref
EOF
- Step 2: Edit `conf.yaml` and `src/samples.csv`
- Step 3: Run preprocessing and quality-check as follows, then check `out/byGene/samples.xls`
```bash
sbatch -A bXXXXXXX -t 24:00:00 -p node -n 16 <<EOF
#!/usr/bin/env bash
. bin/setup_uppmax.sh
rake -m -j 16 qc
EOF
  • Step 4: Run differential expression tests as follows, then check out/byGene/diffexp.xls and analyze more further!
sbatch -A bXXXXXXX -t 24:00:00 -p core -n 1 <<EOF
#!/usr/bin/env bash
. bin/setup_uppmax.sh
rake gene
EOF

Clone this wiki locally