Mercurial > repos > chrisw > monorail_test
annotate run_mr_snakemake.sh @ 39:6c879705d61b draft default tip
Uploaded
author | chrisw |
---|---|
date | Wed, 20 Nov 2019 02:56:18 +0000 |
parents | |
children |
rev | line source |
---|---|
39 | 1 #!/bin/bash |
2 | |
3 snakefile=$1 | |
4 numprocs=$2 | |
5 ref=$3 | |
6 exon_bed=$4 | |
7 output=$5 | |
8 temp=$6 | |
9 genome=$7 | |
10 inputs=$8 | |
11 compressed=$9 | |
12 | |
13 if [[ -n "$compressed" ]]; then | |
14 comp_str="compressed=1" | |
15 fi | |
16 | |
17 snakemake --snakefile "$snakefile" -j $numprocs --config inputs=$inputs $comp_str ref=$ref exon_bed=$exon_bed output=$output temp=$temp genome=$genome |