Skip to content

Commit

Permalink
increase snp overlap filter requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
stevekm committed Aug 29, 2019
1 parent 255e6bf commit c43360a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4406,9 +4406,9 @@ annotations_tables_paired_filtered.choice( annotations_tables_paired_filtered_go
long tumor_count = Files.lines(tumor_tsv).count()
long normal_count = Files.lines(normal_tsv).count()

// good if either has >1 lines
if (tumor_count > 1) output_ch = 0
if (normal_count > 1) output_ch = 0
// good if either has >2 lines; 1 header and one entry
if (tumor_count > 2) output_ch = 0
if (normal_count > 2) output_ch = 0

return(output_ch)
}
Expand Down

0 comments on commit c43360a

Please sign in to comment.