Skip to content

Commit

Permalink
fix for (not true_rep_only) case (error in macs2_pr1, pr2)
Browse files Browse the repository at this point in the history
  • Loading branch information
leepc12 committed Jan 29, 2019
1 parent 217b642 commit 0cdf791
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chip.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ workflow chip {
}
}
if ( peak_caller_=='macs2' ) {
if ( peak_caller_=='macs2' && !true_rep_only ) {
scatter(i in range(length(tas__))) {
# call peaks on 1st pseudo replicated tagalign
call macs2 as macs2_pr1 { input :
Expand Down Expand Up @@ -583,7 +583,7 @@ workflow chip {
}
}
if ( peak_caller_=='spp' ) {
if ( peak_caller_=='spp' && !true_rep_only ) {
scatter(i in range(length(tas__))) {
# call peaks on 1st pseudo replicated tagalign
call spp as spp_pr1 { input :
Expand Down

0 comments on commit 0cdf791

Please sign in to comment.