-
Notifications
You must be signed in to change notification settings - Fork 6
UPPMAX
Shintaro Katayama edited this page Apr 22, 2015
·
40 revisions
git clone -b v3dev https://github.com/shka/STRTprep.git STRTprep3.test
cd STRTprep3.test
bin/install_uppmax.sh- 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.yamlandsrc/samples.csv - Step 3: Run preprocessing and quality-check as follows, then check
out/byGene/samples.xls
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.xlsand 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