Skip to content

Commit

Permalink
better directory
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed Sep 28, 2018
1 parent 78a7202 commit 89131dc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,9 @@ process mapdamageGenome1 {
output:
set val(name), file("res/*.pdf") into mapdamage_result_genome1
script:

"""
mapDamage -i $align -r $fasta -d res
mapDamage -i $align -r $fasta -d $name
"""
}

Expand All @@ -617,10 +618,10 @@ process mapdamageGenome2 {
val(orgaName) from name2_mapdamage
file(fasta) from genome2mapdamage
output:
set val(name), file("res/*.pdf") into mapdamage_result_genome2
set val(name), file("*") into mapdamage_result_genome2
script:
"""
mapDamage -i $align -r $fasta -d res
mapDamage -i $align -r $fasta -d $name
"""
}

Expand Down

0 comments on commit 89131dc

Please sign in to comment.