Skip to content

Commit

Permalink
input change
Browse files Browse the repository at this point in the history
  • Loading branch information
mapo9 committed Mar 25, 2024
1 parent 11c4195 commit 6639f0f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions subworkflows/local/fastq_input_check.nf
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ def create_fastq_channels(LinkedHashMap col) {
}
else if (params.umi_position == "") {
meta.umi_position = null
} else {
error "ERROR: UMI read must be specified as either R1 or R2!"
}
array = [ meta, [ file(col.filename_R1), file(col.filename_R2) ] ]
} else {
Expand Down
5 changes: 1 addition & 4 deletions subworkflows/local/rnaseq_input.nf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ workflow RNASEQ_INPUT {

ch_reads = FASTQ_INPUT_CHECK.out.reads

// validate library generation method parameter
// validate library generation method parameteç
if (params.vprimers) {
error "The TRUST4 library generation method does not require V-region primers, please provide a reference file instead or select another library method option."
} else if (params.race_linker) {
Expand All @@ -42,9 +42,6 @@ workflow RNASEQ_INPUT {
if (!params.coord_fasta) {
error "Please provide a reference file for the TRUST4 library generation method."
}
if (!params.read_format) {
error "Please provide a a read-format as seen in the TRUST4 docs for the TRUST4 library generation method."
}


ch_reads.map{ meta, input_file ->
Expand Down

0 comments on commit 6639f0f

Please sign in to comment.