Skip to content

Commit 0d8e030

Browse files
author
katarzyna.otylia.sikora@gmail.com
committed
copy the fixes and bump the bugfix version
1 parent a591948 commit 0d8e030

File tree

9 files changed

+30
-9
lines changed

9 files changed

+30
-9
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ jobs:
7575
'CONDA_ATAC_ENV',
7676
'CONDA_HIC_ENV',
7777
'CONDA_WGBS_ENV',
78+
'CONDA_DSS_ENV',
7879
'CONDA_RMD_ENV',
7980
'CONDA_PREPROCESSING_ENV',
8081
'CONDA_NONCODING_RNASEQ_ENV',
@@ -94,6 +95,6 @@ jobs:
9495
- name: createEnvs
9596
run: |
9697
micromamba activate snakePipes_CI
97-
conda config --set channel_priority flexible
98+
conda config --set channel_priority strict
9899
snakePipes createEnvs --force --only ${{matrix.envs}}
99100

.github/workflows/osx.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
'CONDA_ATAC_ENV',
2727
'CONDA_HIC_ENV',
2828
'CONDA_WGBS_ENV',
29+
'CONDA_DSS_ENV',
2930
'CONDA_RMD_ENV',
3031
'CONDA_PREPROCESSING_ENV',
3132
'CONDA_NONCODING_RNASEQ_ENV',
@@ -45,6 +46,6 @@ jobs:
4546
- name: createEnvsOSX
4647
run: |
4748
micromamba activate snakePipes_CI
48-
conda config --set channel_priority flexible
49+
conda config --set channel_priority strict
4950
snakePipes createEnvs --force --only ${{matrix.envs}}
5051

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: snakepipes
3-
version: 2.7.2
3+
version: 2.7.3
44

55
source:
66
path: ../

docs/content/News.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
snakePipes News
22
===============
33

4+
snakePipes 2.7.3
5+
----------------
6+
7+
* Fixes #884 by creating an additional conda env for DSS. Build tests are now run with strict channel priority.
8+
9+
410
snakePipes 2.7.2
511
----------------
612
* STAR version has been updated to 2.7.10b. 2.7.10a was returning segmentation fault on MAC.

snakePipes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.7.2'
1+
__version__ = '2.7.3'

snakePipes/common_functions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def set_env_yamls():
3434
'CONDA_ATAC_ENV': 'envs/atac_seq.yaml',
3535
'CONDA_HIC_ENV': 'envs/hic.yaml',
3636
'CONDA_WGBS_ENV': 'envs/wgbs.yaml',
37+
'CONDA_DSS_ENV': 'envs/wgbs_dss.yaml',
3738
'CONDA_RMD_ENV': 'envs/rmarkdown.yaml',
3839
'CONDA_PREPROCESSING_ENV': 'envs/preprocessing.yaml',
3940
'CONDA_NONCODING_RNASEQ_ENV': 'envs/noncoding.yaml',

snakePipes/shared/rules/WGBS.snakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ rule DSS:
376376
FDR=FDR
377377
threads: lambda wildcards: 10 if 10<max_thread else max_thread
378378
benchmark: '{}/.benchmark/DSS.benchmark'.format(get_outdir("DSS", None, minCoverage))
379-
conda: CONDA_WGBS_ENV
379+
conda: CONDA_DSS_ENV
380380
script: "../rscripts/WGBS_DSS.Rmd"
381381

382382

snakePipes/shared/rules/envs/wgbs.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,8 @@ dependencies:
1818
- r-dplyr
1919
- r-tidyr
2020
- r-pander
21-
- r-factominer
22-
- bioconductor-bsseq
2321
- bioconductor-genomicranges
2422
- bioconductor-genomicfeatures
25-
- bioconductor-biomart
26-
- bioconductor-dss
2723
- bioconductor-dmrseq
2824
- bioconductor-rtracklayer
2925
- bioconductor-biocparallel
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: WGBS_DSS-env-2.0
2+
channels:
3+
- mpi-ie
4+
- conda-forge
5+
- bioconda
6+
dependencies:
7+
- r-base
8+
- r-car
9+
- r-factominer
10+
- r-ggplot2
11+
- r-rmarkdown
12+
- r-dplyr
13+
- r-tidyr
14+
- r-pander
15+
- bioconductor-dss
16+
- bioconductor-biocparallel

0 commit comments

Comments
 (0)