Skip to content

Commit

Permalink
changed path to val for unused parts of channels so that it doesnt th…
Browse files Browse the repository at this point in the history
…row the not valid path error
  • Loading branch information
kyleoconnell committed Apr 2, 2024
1 parent 8e7cf04 commit 9e58aa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/local/initial_submission/main_genbank.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process SUBMISSION_GENBANK {
'cdcgov/seqsender-dev' : 'cdcgov/seqsender-dev' }"

input:
tuple val(meta), path(validated_meta_path), path(fasta_path), path(fastq_1), path(fastq_2), path(annotations_path)
tuple val(meta), path(validated_meta_path), path(fasta_path), val(fastq_1), val(fastq_2), path(annotations_path)
path submission_config

// define the command line arguments based on the value of params.submission_test_or_prod, params.send_submission_email
Expand Down
2 changes: 1 addition & 1 deletion modules/local/initial_submission/main_sra.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process SUBMISSION_SRA {
'cdcgov/seqsender-dev' : 'cdcgov/seqsender-dev' }"

input:
tuple val(meta), path(validated_meta_path), path(fasta_path), path(fastq_1), path(fastq_2)
tuple val(meta), path(validated_meta_path), val(fasta_path), path(fastq_1), path(fastq_2)
path submission_config

// define the command line arguments based on the value of params.submission_test_or_prod
Expand Down

0 comments on commit 9e58aa0

Please sign in to comment.