Skip to content

Commit

Permalink
Bump version: 0.2.2 → 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
veghp committed Sep 1, 2022
1 parent ea8b593 commit a190f30
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.2
current_version = 0.2.3
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: "Build Docker image"
run: |
docker build . -f containers/Dockerfile \
-t ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.2 \
-t ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.3 \
-t ghcr.io/edinburgh-genome-foundry/sequeduct:latest
- name: "Release Docker image"
run: |
docker push ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.2
docker push ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.3
docker push ghcr.io/edinburgh-genome-foundry/sequeduct:latest
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Sequeduct

![version](https://img.shields.io/badge/current_version-0.2.2-blue)
![version](https://img.shields.io/badge/current_version-0.2.3-blue)

Sequencing analysis pipeline (aqueduct) for validating plasmids and DNA assembly constructs, using long reads.

Expand All @@ -17,7 +17,7 @@ Install [Nextflow](https://www.nextflow.io/) and [Docker](https://www.docker.com
Pull the Nextflow pipeline:

```bash
nextflow pull edinburgh-genome-foundry/Sequeduct -r v0.2.2
nextflow pull edinburgh-genome-foundry/Sequeduct -r v0.2.3
```

Pull the Docker image that contains the required software (requires access to EGF's container repo):
Expand All @@ -38,25 +38,25 @@ Create a directory for your project and copy (or link) the FASTQ directories fro

```bash
# Preview
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.2 -entry preview --fastq_dir='fastq' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.3 -entry preview --fastq_dir='fastq' \
--reference_dir='genbank' \
--sample_sheet='sample_sheet.csv' \
-profile docker
# Analysis
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.2 -entry analysis --fastq_dir='fastq' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.3 -entry analysis --fastq_dir='fastq' \
--reference_dir='genbank' \
--sample_sheet='sample_sheet.csv' \
--projectname='EGF project' \
-profile docker
# Review
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.2 -entry review --reference_dir='genbank' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.3 -entry review --reference_dir='genbank' \
--results_csv='results_sheet.csv' \
--projectname='EGF project review' \
--all_parts='parts_fasta/part_sequences.fasta' \
--assembly_plan='assembly_plan.csv' \
-profile docker
# De novo assembly
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.2 -entry assembly --fastq_dir='fastq' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.2.3 -entry assembly --fastq_dir='fastq' \
--results_csv='results_sheet.csv' \
--projectname='EGF assembly' \
-profile docker
Expand Down
6 changes: 3 additions & 3 deletions conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
manifest {
name = 'sequeduct'
description = 'Sequencing analysis pipeline (aqueduct) for validating plasmids, using long reads.'
version = '0.2.2'
version = '0.2.3'
homePage = 'https://github.com/Edinburgh-Genome-Foundry/Sequeduct.git'
author = 'Peter Vegh'
nextflowVersion = '>=21.10.6'
Expand Down Expand Up @@ -40,7 +40,7 @@ profiles {
charliecloud.enabled = false

// specify the container to be used
process.container = "ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.2"
process.container = "ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.3"
}

singularity {
Expand All @@ -52,7 +52,7 @@ profiles {
charliecloud.enabled = false

// specify the container to be used
process.container = "ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.2"
process.container = "ghcr.io/edinburgh-genome-foundry/sequeduct:v0.2.3"
}

// Son of Grid Engine configuration
Expand Down
2 changes: 1 addition & 1 deletion containers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ LABEL org.opencontainers.image.documentation="https://github.com/edinburgh-genom
LABEL org.opencontainers.image.source="https://github.com/edinburgh-genome-foundry/sequeduct/"
LABEL org.opencontainers.image.vendor="edinburgh-genome-foundry"
LABEL org.opencontainers.image.authors="Peter Vegh"
LABEL org.opencontainers.image.revision="v0.2.2"
LABEL org.opencontainers.image.revision="v0.2.3"

0 comments on commit a190f30

Please sign in to comment.