Skip to content

Commit

Permalink
ss
Browse files Browse the repository at this point in the history
  • Loading branch information
Max committed Mar 25, 2022
1 parent b351be9 commit a1a83cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SCRIPTS_DIR = srcdir("scripts")


def getScript(name):
return "%s%s" % (SCRIPTS_DIR, name)
return "%s/%s" % (SCRIPTS_DIR, name)


##### report workflow #####
Expand Down
2 changes: 1 addition & 1 deletion workflow/rules/assignment.smk
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ rule assignment_merge:
R2="results/assignment/{assignment}/fastq/splits/R2.split{split}.fastq.gz",
R3="results/assignment/{assignment}/fastq/splits/R3.split{split}.fastq.gz",
script_FastQ2doubleIndexBAM=getScript("count/FastQ2doubleIndexBAM.py"),
script_MergeTrimReadsBAM=getScript("/count/MergeTrimReadsBAM.py"),
script_MergeTrimReadsBAM=getScript("count/MergeTrimReadsBAM.py"),
output:
bam=temp("results/assignment/{assignment}/bam/merge_split{split}.bam"),
conda:
Expand Down

0 comments on commit a1a83cd

Please sign in to comment.