Skip to content

Commit

Permalink
fix bug on variable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
imendes93 committed Jan 6, 2022
1 parent d0aca44 commit 920f9a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ if ( download_from('gen3-drs')) {

script:
"""
filename=$(basename $manifest .json)
filename=\$(basename $manifest .json)
in2csv $manifest > \${filename}.csv
"""
}
Expand All @@ -506,7 +506,7 @@ if ( download_from('gen3-drs')) {
"""
}

ch_gtex_gen3_filtered_manifest_csv.
ch_gtex_gen3_filtered_manifest_csv
.splitCsv(skip:1)
.map { md5sum, file_name, obj_id, file_size -> [md5sum, file_name, obj_id, file_size] }
.set { ch_gtex_gen3_ids }
Expand Down

0 comments on commit 920f9a2

Please sign in to comment.