Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to newest release #67

Merged
merged 5 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ Umi-pipeline-nf orignates from a snakemake-based analysis pipeline ([pipeline-um
2. Download the pipeline and test it on a [minimal dataset](data/info.txt) with a single command.

```bash
nextflow run genepi/umi-pipeline-nf -r v0.2.0 -profile test,docker
nextflow run genepi/umi-pipeline-nf -r v0.2.1 -profile test,docker
```

3. Start running your own analysis!
3.1 Download and adapt the config/custom.config with paths to your data (relative and absolute paths possible).

```bash
nextflow run genepi/umi-pipeline-nf -r v0.2.0 -c <custom.config> -profile custom,<docker,singularity>
nextflow run genepi/umi-pipeline-nf -r v0.2.1 -c <custom.config> -profile custom,<docker,singularity>
```

## Citation
Expand Down
2 changes: 1 addition & 1 deletion config/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ params {

help = false
version = false
debug = true
debug = false

input = "$baseDir/data/fastq_pass/"
output = "umi-pipeline-nf_test-run"
Expand Down
2 changes: 1 addition & 1 deletion env/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- seqtk=1.3
- lofreq=2.1.5
- freebayes=1.3.2
- vcflib
- vcflib=1.0.0
- bedtools=2.30.0
- vsearch=2.21.2
- openjdk=11.0.9
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NEXTFLOW MANIFEST
manifest {
name = 'umi-pipeline-nf'
version = '0.2.0'
version = '0.2.1'
description = 'Nextflow pipeline to analyze umi amplicon data'
author = 'Stephan Amstler'
homePage = 'https://github.com/AmstlerStephan/umi-pipeline-nf.git'
Expand Down Expand Up @@ -67,7 +67,7 @@ params {
// Load base.config by default for all pipelines
includeConfig "${baseDir}/config/base.config"

process.container = 'quay.io/genepi/umi-pipeline-nf:v0.2.0'
process.container = 'quay.io/genepi/umi-pipeline-nf:v0.2.1'

profiles {

Expand Down
Loading