Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
veghp committed Aug 25, 2023
1 parent 566fa9d commit f11a5c7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 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.3.0
current_version = 0.3.1
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 @@ -16,9 +16,9 @@ jobs:
- name: "Build Docker image"
run: |
docker build . -f containers/Dockerfile \
-t ghcr.io/edinburgh-genome-foundry/sequeduct:v0.3.0 \
-t ghcr.io/edinburgh-genome-foundry/sequeduct:v0.3.1 \
-t ghcr.io/edinburgh-genome-foundry/sequeduct:latest
- name: "Release Docker image"
run: |
docker push ghcr.io/edinburgh-genome-foundry/sequeduct:v0.3.0
docker push ghcr.io/edinburgh-genome-foundry/sequeduct:v0.3.1
docker push ghcr.io/edinburgh-genome-foundry/sequeduct:latest
14 changes: 7 additions & 7 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.3.0-blue)
![version](https://img.shields.io/badge/current_version-0.3.1-blue)

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

Expand All @@ -17,13 +17,13 @@ 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.3.0
nextflow pull edinburgh-genome-foundry/Sequeduct -r v0.3.1
```

Pull the Docker image that contains the required software (requires access to EGF's container repo):

```bash
docker pull ghcr.io/edinburgh-genome-foundry/sequeduct:0.3.0
docker pull ghcr.io/edinburgh-genome-foundry/sequeduct:0.3.1
```

Alternatively, build the image locally from the cloned 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.3.0 -entry preview --fastq_dir='fastq_pass' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.3.1 -entry preview --fastq_dir='fastq_pass' \
--reference_dir='genbank' \
--sample_sheet='sample_sheet.csv' \
-profile docker
# Analysis
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.3.0 -entry analysis --fastq_dir='fastq_pass' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.3.1 -entry analysis --fastq_dir='fastq_pass' \
--reference_dir='genbank' \
--sample_sheet='sample_sheet.csv' \
--projectname='EGF project' \
-profile docker
# Review
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.3.0 -entry review --reference_dir='genbank' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.3.1 -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.3.0 -entry assembly --fastq_dir='fastq_pass' \
nextflow run edinburgh-genome-foundry/Sequeduct -r v0.3.1 -entry assembly --fastq_dir='fastq_pass' \
--results_csv='assembly_sheet.csv' \
-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.3.0'
version = '0.3.1'
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.3.0"
process.container = "ghcr.io/edinburgh-genome-foundry/sequeduct:v0.3.1"
}

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.3.0"
process.container = "ghcr.io/edinburgh-genome-foundry/sequeduct:v0.3.1"
}

// 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 @@ -71,4 +71,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.3.0"
LABEL org.opencontainers.image.revision="v0.3.1"

0 comments on commit f11a5c7

Please sign in to comment.