Skip to content

Commit 02e03fb

Browse files
committed
Remove mention of Nextflow param in shell
1 parent 4ed71d0 commit 02e03fb

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

lectures/nextflow/nextflow.qmd

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -108,30 +108,6 @@ process GET_SRA_BY_ACCESSION {
108108
}
109109
```
110110

111-
## Anatomy of a process {auto-animate=true}
112-
113-
```groovy
114-
process GET_SRA_BY_ACCESSION {
115-
116-
cpus 2
117-
memory '8 GB'
118-
119-
conda 'sra-tools=2.11.0'
120-
container 'ncbi/sra-tools:2.11.0'
121-
122-
input:
123-
val(sample)
124-
125-
output:
126-
tuple val(sample), path("${sample}.fastq.gz")
127-
128-
script:
129-
"""
130-
fastq-dump ${sample} -X {params.depth} > ${sample}.fastq.gz
131-
"""
132-
}
133-
```
134-
135111
## Anatomy of a workflow {auto-animate=true}
136112

137113
```groovy

0 commit comments

Comments
 (0)