Skip to content

Commit

Permalink
Remove mention of Nextflow param in shell
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterius committed Nov 26, 2024
1 parent 4ed71d0 commit 02e03fb
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions lectures/nextflow/nextflow.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -108,30 +108,6 @@ process GET_SRA_BY_ACCESSION {
}
```

## Anatomy of a process {auto-animate=true}

```groovy
process GET_SRA_BY_ACCESSION {
cpus 2
memory '8 GB'
conda 'sra-tools=2.11.0'
container 'ncbi/sra-tools:2.11.0'
input:
val(sample)
output:
tuple val(sample), path("${sample}.fastq.gz")
script:
"""
fastq-dump ${sample} -X {params.depth} > ${sample}.fastq.gz
"""
}
```

## Anatomy of a workflow {auto-animate=true}

```groovy
Expand Down

0 comments on commit 02e03fb

Please sign in to comment.