Nextflow community chat moved to Slack! https://www.nextflow.io/blog/2022/nextflow-is-moving-to-slack.html
pditommaso on master
Fix -with-apptainer cli option … (compare)
pditommaso on fix-apptainer-cli-option
bentsherman on 3595-nf-cli
Update params parsing in CLI v2… (compare)
bentsherman on 3606-singularity-trace-cleanup-child-procs
Fix test Signed-off-by: Ben Sh… (compare)
${toRaw}/SampleSheet.csv
? I'm wandering if you have write permissions under ${toRaw}
..nextflow.log
file report any error? Does it report if the process you need has been "submitted" or "chached" ?
*.fastq
expected by process merge_nextseq_lanes
when calling a script that renames files in place. There are many .fastq files in the working directory but it cannot find any?
into
.
I found the need to introduce extra channel names a little bit annoying
fastq_pairs = Channel
.fromFilePairs('/cb/boostershot-basic/Data/Intensities/BaseCalls/CBTEST_Project_0091/*_L00[1-4]_R[1-2]_001.fastq'), size: -1)
fromPath
and fromFilePairs
are channel factory methods; they are channel 'sources', you can't use them as connectors. But you can create file pairs yourself -- the following is not a great example, but it does end up with a process spitting out a pair of files -- https://github.com/cellgeni/rnaseq/blob/master/main.nf#L295 . I would try to make a small example using toy files emulating what you want to achieve.
I am using Nextflow version 19.05.0-edge build 5097
I want execute process X four time. However, the process only executed once.
Could someone explain what I did wrong? thanks.
```
nextflow.preview.dsl=2
aaa = Channel.from([[9],[1],[7],[5]])
process X{
input:
val b
script:
"""
echo ${b} > hello.txt
"""
}
X(aaa)
executor > local (4)
[43/9ff7f3] process > X (1) [100%] 4 of 4 ✔