-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: do not write header for gtf file * fix: write bed files without header * update dockerfile * update dev env --------- Co-authored-by: CJ Herrmann <[email protected]>
- Loading branch information
1 parent
188e429
commit b8d858b
Showing
3 changed files
with
11 additions
and
2 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 |
---|---|---|
|
@@ -16,7 +16,8 @@ LABEL maintainer="Máté Balajti <[email protected]>" | |
# COPY THE YAML & INSTALL SOFTWARE WITH CONDA | ||
WORKDIR /usr/src/app | ||
COPY ./ ./ | ||
RUN conda env create --file environment.yml | ||
RUN conda env create --file environment.yml \ | ||
&& conda clean --all | ||
|
||
# VARIABLES | ||
ARG WORKDIR="/home/USER" | ||
|
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