Skip to content

Commit 5b6bdfe

Browse files
committed
Avoid unused variable warning
1 parent 0ef6a73 commit 5b6bdfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • subworkflows/local/interproscan

subworkflows/local/interproscan/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ workflow INTERPROSCAN {
2525
file(params.interproscan_tar_gz, checkIfExists: true),
2626
]
2727
UNTAR(interproscan_compressed)
28-
interproscan_db = UNTAR.out.untar.map { meta, folder -> tuple(folder.resolve('data'), params.interproscan_database_version) }
28+
interproscan_db = UNTAR.out.untar.map { _meta, folder -> tuple(folder.resolve('data'), params.interproscan_database_version) }
2929
}
3030
else if (params.interproscan_database) {
3131
interproscan_db = [file(params.interproscan_database, checkIfExists: true), params.interproscan_database_version]

0 commit comments

Comments
 (0)