-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #152 from nf-core/dev
Release 1.2.0
- Loading branch information
Showing
24 changed files
with
765 additions
and
336 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# Markdownlint configuration file | ||
default: true, | ||
default: true | ||
line-length: false | ||
no-duplicate-header: | ||
siblings_only: true | ||
no-inline-html: | ||
allowed_elements: | ||
- img | ||
- p | ||
- kbd | ||
- details | ||
- summary |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM nfcore/base:1.12 | ||
FROM nfcore/base:1.12.1 | ||
LABEL authors="Hadrien Gourlé <[email protected]>, Daniel Straub <[email protected]>, Sabrina Krakau <[email protected]>" \ | ||
description="Docker image containing all software requirements for the nf-core/mag pipeline" | ||
|
||
|
@@ -7,10 +7,10 @@ COPY environment.yml / | |
RUN conda env create --quiet -f /environment.yml && conda clean -a | ||
|
||
# Add conda installation dir to PATH (instead of doing 'conda activate') | ||
ENV PATH /opt/conda/envs/nf-core-mag-1.1.2/bin:$PATH | ||
ENV PATH /opt/conda/envs/nf-core-mag-1.2.0/bin:$PATH | ||
|
||
# Dump the details of the installed packages to a file for posterity | ||
RUN conda env export --name nf-core-mag-1.1.2 > nf-core-mag-1.1.2.yml | ||
RUN conda env export --name nf-core-mag-1.2.0 > nf-core-mag-1.2.0.yml | ||
|
||
# Instruct R processes to use these empty files instead of clashing with a local version | ||
RUN touch .Rprofile | ||
|
Oops, something went wrong.