Skip to content

Commit

Permalink
Fix shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Feb 19, 2017
1 parent 73f6404 commit d09d461
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bio/star/align/test_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ def setup_module():
os.chdir(os.path.join(os.path.dirname(__file__), "test"))

def test():
subprocess.check_call(["snakemake", "mapped/a/Aligned.out.bam", "--use-conda", "-F"])
subprocess.check_call(["snakemake", "star/a/Aligned.out.bam", "--use-conda", "-F"])
5 changes: 3 additions & 2 deletions bio/star/align/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@


shell(
"(STAR "
"STAR "
"{snakemake.params.extra} "
"--runThreadN {snakemake.threads} "
"--genomeDir {snakemake.params.index} "
"--readFilesIn {snakemake.input.sample} "
"{readcmd} "
"--outSAMtype BAM "
"--outFileNamePrefix {outprefix} "
"--outStd Log")
"--outStd Log "
"{log}")

0 comments on commit d09d461

Please sign in to comment.