Skip to content

Commit

Permalink
Bump version: 1.0.1.9014 → 1.0.1.9015
Browse files Browse the repository at this point in the history
  • Loading branch information
sigven committed Jun 14, 2024
1 parent a6a9140 commit c543259
Show file tree
Hide file tree
Showing 11 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 = 1.0.1.9014
current_version = 1.0.1.9015
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_conda_recipes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
recipe_path: conda/recipe
env_yml_path: conda/env/yml
env_lock_path: conda/env/lock
VERSION: '1.0.1.9014' # versioned by bump2version
VERSION: '1.0.1.9015' # versioned by bump2version
jobs:
build_pcgrr_conda_pkg:
# When merging to one of the branches above and the commit message matches
Expand Down
2 changes: 1 addition & 1 deletion conda/env/yml/pcgr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:
- conda-forge

dependencies:
- pcgr::pcgr ==1.0.1.9014 # versioned by bump2version
- pcgr::pcgr ==1.0.1.9015 # versioned by bump2version
- bedtools
- bcftools
- cyvcf2
Expand Down
2 changes: 1 addition & 1 deletion conda/env/yml/pcgrr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ channels:

dependencies:
- python
- pcgr::r-pcgrr ==1.0.1.9014 # versioned by bump2version
- pcgr::r-pcgrr ==1.0.1.9015 # versioned by bump2version
- pcgr::r-cpsr
- r-argparse
- bioconductor-bsgenome.hsapiens.ucsc.hg38
Expand Down
2 changes: 1 addition & 1 deletion conda/env/yml/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- bioconda
- conda-forge
dependencies:
- pcgr::r-pcgrr ==1.0.1.9014 # versioned by bump2version
- pcgr::r-pcgrr ==1.0.1.9015 # versioned by bump2version
- r-pkgdown
- r-readr
- pandoc
2 changes: 1 addition & 1 deletion conda/recipe/pcgr/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pcgr
version: 1.0.1.9014 # versioned by bump2version
version: 1.0.1.9015 # versioned by bump2version

source:
path: ../../..
Expand Down
2 changes: 1 addition & 1 deletion conda/recipe/pcgrr/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: r-pcgrr
version: 1.0.1.9014 # versioned by bump2version
version: 1.0.1.9015 # versioned by bump2version

source:
path: ../../../pcgrr
Expand Down
2 changes: 1 addition & 1 deletion pcgr/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# versioned by bump2version
__version__ = '1.0.1.9014'
__version__ = '1.0.1.9015'
2 changes: 1 addition & 1 deletion pcgrr/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pcgrr
Type: Package
Title: Personal Cancer Genome ReporteR
Version: 1.0.1.9014
Version: 1.0.1.9015
Authors@R:
c(person(given = "Sigve",
family = "Nakken",
Expand Down
6 changes: 3 additions & 3 deletions pcgrr/vignettes/installation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ output: rmarkdown::html_document

```bash
cd /Users/you/dir4/conda
PCGR_VERSION="1.0.1.9014"
PCGR_VERSION="1.0.1.9015"
PCGR_REPO="https://raw.githubusercontent.com/sigven/pcgr/v${PCGR_VERSION}/conda/env/lock/"
PLATFORM="linux" # or "osx"

Expand Down Expand Up @@ -143,7 +143,7 @@ following example:
cd /Users/you/dir4/conda
PLATFORM="osx-64" # or "linux-64"

PCGR_VERSION="1.0.1.9014"
PCGR_VERSION="1.0.1.9015"
PCGR_REPO="https://raw.githubusercontent.com/sigven/pcgr/v${PCGR_VERSION}/conda/env/lock/"
PLATFORM="linux" # or "osx"

Expand Down Expand Up @@ -233,7 +233,7 @@ docker container run -it --rm \
-v /Users/you/dir1/data:/root/pcgr_refdata \
-v /Users/you/dir2/pcgr_inputs:/root/pcgr_inputs \
-v /Users/you/dir3/pcgr_outputs:/root/pcgr_outputs \
sigven/pcgr:1.0.1.9014 \
sigven/pcgr:1.0.1.9015 \
pcgr \
--input_vcf "/root/pcgr_inputs/tumor_sample.BRCA.vcf.gz" \
--vep_dir "/root/vep/.vep" \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pcgr"
version = "1.0.1.9014" # versioned by bump2version
version = "1.0.1.9015" # versioned by bump2version
description = "Personal Cancer Genome Reporter (PCGR) - variant interpretation for precision cancer medicine"
authors = [
{name = "Sigve Nakken", email = "[email protected]"},
Expand Down

0 comments on commit c543259

Please sign in to comment.