-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.2.0: Config update, make_log_useful & watchdog update, Dockerfile, …
…formatting & linting
- Loading branch information
1 parent
b85f954
commit 83de295
Showing
5 changed files
with
123 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
FROM condaforge/mambaforge:latest | ||
LABEL io.github.snakemake.containerized="true" | ||
LABEL io.github.snakemake.conda_env_hash="285fb274e2e9c667a310dbacd0e76c015875280fa7c764272824fc39421dde0d" | ||
|
||
# Step 1: Retrieve conda environments | ||
|
||
# Conda environment: | ||
# source: https://github.com/snakemake/snakemake-wrappers/raw/v1.7.0/bio/bwa/index/environment.yaml | ||
# prefix: /conda-envs/5681728a49bd83ceed09ba194330c858 | ||
# channels: | ||
# - bioconda | ||
# - conda-forge | ||
# - defaults | ||
# dependencies: | ||
# - bwa ==0.7.17 | ||
RUN mkdir -p /conda-envs/5681728a49bd83ceed09ba194330c858 | ||
ADD https://github.com/snakemake/snakemake-wrappers/raw/v1.7.0/bio/bwa/index/environment.yaml /conda-envs/5681728a49bd83ceed09ba194330c858/environment.yaml | ||
|
||
# Conda environment: | ||
# source: workflow/envs/ashleys_base.yaml | ||
# prefix: /conda-envs/87c04f5d115eff742eca84455513deba | ||
# name: ashleys_base | ||
# channels: | ||
# - conda-forge | ||
# - bioconda | ||
# dependencies: | ||
# - samtools | ||
# - tabix | ||
# - bwa | ||
# - sambamba | ||
# - mosaicatcher | ||
# # - alfred | ||
# - ashleys-qc | ||
# - pandas | ||
# # PUBLISHDIR | ||
# - rsync | ||
# # MULTIQC | ||
# - multiqc | ||
# # Fix sklearn update | ||
# - scikit-learn=1.2.2 | ||
RUN mkdir -p /conda-envs/87c04f5d115eff742eca84455513deba | ||
COPY workflow/envs/ashleys_base.yaml /conda-envs/87c04f5d115eff742eca84455513deba/environment.yaml | ||
|
||
# Conda environment: | ||
# source: workflow/envs/ashleys_rtools.yaml | ||
# prefix: /conda-envs/9b847fc31baae8e01dfb7ce438a56b71 | ||
# name: rtools | ||
# channels: | ||
# - conda-forge | ||
# - bioconda | ||
# - r | ||
# - anaconda | ||
# dependencies: | ||
# # - bioconductor-biocparallel | ||
# # - bioconductor-bsgenome | ||
# # - bioconductor-bsgenome.hsapiens.ucsc.hg19 | ||
# # - bioconductor-bsgenome.hsapiens.ucsc.hg38 | ||
# # - bioconductor-fastseg | ||
# # - bioconductor-genomicalignments | ||
# - bioconductor-genomicranges | ||
# # - bioconductor-rsamtools | ||
# # - bioconductor-s4vectors | ||
# - r-assertthat | ||
# - r-base | ||
# # - r-biocmanager | ||
# - r-cowplot | ||
# - r-data.table | ||
# # - r-devtools | ||
# # - r-doparallel | ||
# # - r-foreach | ||
# - r-ggplot2 | ||
# # - r-gtools | ||
# - r-reshape2 | ||
# # - r-zoo | ||
# # - r-dplyr | ||
# # - r-mc2d | ||
# # - r-pheatmap | ||
# # - bioconductor-complexheatmap | ||
# # - r-gplots | ||
# - r-scales | ||
# - r-rcolorbrewer | ||
# # - r-stringr | ||
# - r-cairo | ||
# - fonts-anaconda | ||
# # NEW | ||
# - bioconductor-edger | ||
# - r-r.utils | ||
# # PLATE PLOT | ||
# - r-dplyr | ||
# - r-platetools | ||
# - r-viridis | ||
# # GC_correction | ||
# - r-tidyr | ||
# - r-ggpubr | ||
# # SOLVE R lib issue | ||
# - r-stringi=1.7.12 | ||
RUN mkdir -p /conda-envs/9b847fc31baae8e01dfb7ce438a56b71 | ||
COPY workflow/envs/ashleys_rtools.yaml /conda-envs/9b847fc31baae8e01dfb7ce438a56b71/environment.yaml | ||
|
||
# Step 2: Generate conda environments | ||
|
||
RUN mamba env create --prefix /conda-envs/5681728a49bd83ceed09ba194330c858 --file /conda-envs/5681728a49bd83ceed09ba194330c858/environment.yaml && \ | ||
mamba env create --prefix /conda-envs/87c04f5d115eff742eca84455513deba --file /conda-envs/87c04f5d115eff742eca84455513deba/environment.yaml && \ | ||
mamba env create --prefix /conda-envs/9b847fc31baae8e01dfb7ce438a56b71 --file /conda-envs/9b847fc31baae8e01dfb7ce438a56b71/environment.yaml && \ | ||
mamba clean --all -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters