Skip to content

Commit

Permalink
Fixed the boolean variable issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamie Wang committed Jul 22, 2024
1 parent f72faeb commit 1514954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ workflow {
def name = row[0]
def raw_path = file(row[1])
def filtered_path = row[2]
def demultiplexing = row[3].toBoolean()
def demultiplexing = row[3].toLowerCase()
return tuple(name, raw_path, filtered_path, demultiplexing)
}

Expand Down

0 comments on commit 1514954

Please sign in to comment.