-
Notifications
You must be signed in to change notification settings - Fork 4
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 #31 from Duke-GCB/fix-trim-galore
Fix trim galore
- Loading branch information
Showing
1 changed file
with
5 additions
and
3 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# trim_galore: wrapper around cutadapt and fastqc | ||
# trim_galore: wrapper around cutadapt and fastqc | ||
# https://www.bioinformatics.babraham.ac.uk/projects/trim_galore/ | ||
FROM dukegcb/fastqc:v0.11.4 | ||
FROM dukegcb/fastqc:0.11.4 | ||
LABEL maintainer="[email protected]" | ||
|
||
# install additional requirements | ||
|
@@ -29,4 +29,6 @@ WORKDIR /tmp | |
RUN curl -SLO ${TRIM_GALORE_URL}/${TRIM_GALORE_RELEASE} && unzip ${TRIM_GALORE_RELEASE} -d ${DEST_DIR} && rm ${TRIM_GALORE_RELEASE} | ||
|
||
# Link executable to /usr/local/bin | ||
RUN ln -s /src/trim_galore/trim_galore /usr/local/bin/trim_galore | ||
RUN ln -s /opt/trim_galore /usr/local/bin/trim_galore | ||
|
||
CMD ["/usr/local/bin/trim_galore"] |