#!/usr/bin/env nextflow
Channel .fromPath( params.reads ) .ifEmpty { error "Cannot find any reads matching: ${params.reads}" } .set { read_files } read_files.into { read_files_input }
process sample_correlation { input: file input_files from read_files_input.toList() exec: println "list <- c(\"${input_files}\")"
}N E X T F L O W ~ version 0.18.3Launching test.nfWARN: Process 'sample_correlation' cannot be executed by 'slurm' executor -- Using 'local' executor instead[warm up] executor > locallist <- c("human_1_R1.fastq.gz human_2_R1.fastq.gz human_3_R1.fastq.gz human_5_R1.fastq.gz human_4_R1.fastq.gz")[11/83c378] Submitted process > sample_correlation (1)#!/usr/bin/env nextflow
Channel .fromPath( params.reads ) .ifEmpty { error "Cannot find any reads matching: ${params.reads}" } .set { read_files } read_files.into { read_files_input }
process sample_correlation { input: file input_files from read_files_input.toList() exec: println "list <- c(\"${input_files.join('", "')}\")"
}
N E X T F L O W ~ version 0.18.3Launching test.nfWARN: Process 'sample_correlation' cannot be executed by 'slurm' executor -- Using 'local' executor instead[warm up] executor > local[47/ec3662] Submitted process > sample_correlation (1)Error executing process > 'sample_correlation (1)'
Caused by: No signature of method: nextflow.util.BlankSeparatedList.join() is applicable for argument types: (java.lang.String) values: [", "]Possible solutions: wait(), find(), wait(long), print(java.lang.Object), is(java.lang.Object), find(groovy.lang.Closure)
Source block: println "list <- c(\"${input_files.join('", "')}\")"
Work dir: /lupus/home/phil/nextflow-test/work/47/ec3662993149ac4cf177f12950ec53
Tip: you can try to figure out what's wrong by changing to the process work dir and showing the script file named: '.command.sh'
-- Check script 'test.nf' at line: 16 or see '.nextflow.log' file for more details--
You received this message because you are subscribed to the Google Groups "Nextflow" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nextflow+u...@googlegroups.com.
Visit this group at https://groups.google.com/group/nextflow.
For more options, visit https://groups.google.com/d/optout.