Skip to content

Commit 1c8ae39

Browse files
authored
Merge pull request #166 from icgc-argo-workflows/payload-gen-seq-experiment@0.8.2
[release]
2 parents 5439258 + a219cb9 commit 1c8ae39

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

payload-gen-seq-experiment/main.nf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/* this block is auto-generated based on info from pkg.json where */
2727
/* changes can be made if needed, do NOT modify this block manually */
2828
nextflow.enable.dsl = 2
29-
version = '0.8.1'
29+
version = '0.8.2'
3030

3131
container = [
3232
'ghcr.io': 'ghcr.io/icgc-argo-workflows/data-processing-utility-tools.payload-gen-seq-experiment'
@@ -85,7 +85,6 @@ process payloadGenSeqExperiment {
8585
args_metadata_payload_json= !metadata_payload_json.name.startsWith("NO_FILE") ? "-m ${metadata_payload_json}" : ""
8686
args_schema_url = !schema_url.startsWith("NO_FILE") ? "-s ${schema_url}" : ""
8787
args_converted_file_args = !cram_reference.startsWith("NO_FILE") ? "-br ${cram_reference} -b ${converted_files}" : ""
88-
args_recalculate_size_and_md5_files = recalculate_size_and_md5_files.empty() ? "" : "-z ${recalculate_size_and_md5_files}"
8988
"""
9089
main.py \
9190
${args_experiment_info_tsv} \

payload-gen-seq-experiment/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def main(metadata,url,bam_from_cram,bam_from_cram_reference,recalculate_size_and
392392
help="BAM files that have converted from CRAM")
393393
parser.add_argument("-br", "--bam-from-cram-reference",default=None,
394394
help="Name of reference file used in cram2bam conversion")
395-
parser.add_argument("-z", "--recalculate-size-and-md5-files",default=[],nargs="+",
395+
parser.add_argument("-z", "--recalculate-size-and-md5-files",default=[],nargs="*",
396396
help="Supplied files here will have their md5sum and size relcalculated")
397397
args = parser.parse_args()
398398

payload-gen-seq-experiment/pkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "payload-gen-seq-experiment",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "SONG payload generation for sequencing experiment",
55
"main": "main.nf",
66
"deprecated": false,

payload-gen-seq-experiment/tests/checker.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/* this block is auto-generated based on info from pkg.json where */
3232
/* changes can be made if needed, do NOT modify this block manually */
3333
nextflow.enable.dsl = 2
34-
version = '0.8.1'
34+
version = '0.8.2'
3535

3636
container = [
3737
'ghcr.io': 'ghcr.io/icgc-argo-workflows/data-processing-utility-tools.payload-gen-seq-experiment'

0 commit comments

Comments
 (0)