-
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.
upgrade modules and moving to different containers
- Loading branch information
Showing
8 changed files
with
34 additions
and
58 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,7 @@ | ||
- Moving modules into modules folder | ||
- Adding nextflow_schema.json | ||
- Review container | ||
|
||
* Testing new DSL2 version against old one | ||
* Move parts into subworkflows for clarity if possible | ||
- Testing new DSL2 version against old one | ||
- Move parts into subworkflows for clarity if possible | ||
- Convert params.config to params.yaml | ||
- Include colors into the terminal messages |
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 was deleted.
Oops, something went wrong.
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,8 +1,8 @@ | ||
install.packages('devtools', dependencies=TRUE, repos='cran.rstudio.com/'); | ||
require(devtools) | ||
install.packages(c('igraph'), repos='http://cran.us.r-project.org'); | ||
install.packages(c('ggplot2'), repos='http://cran.us.r-project.org'); | ||
install.packages(c('nloptr'), repos='http://cran.us.r-project.org'); | ||
install.packages(c('pbkrtest', 'lme4', 'pbkrtest', 'lme4'), repos='http://cran.us.r-project.org'); | ||
install.packages(c('ggpubr', 'cowplot'), repos='http://cran.us.r-project.org'); | ||
install.packages(c('hashmap'), repos='http://cran.us.r-project.org'); | ||
|
||
devtools::install_github('nathan-russell/hashmap') |
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,16 @@ | ||
FROM perl:5.24-threaded-buster | ||
|
||
ARG MAFFT_VERSION=7.429 | ||
|
||
RUN apt-get update -y && apt-get install -y build-essential clustalw && rm -rf /var/lib/apt/lists/* | ||
|
||
#Installing MAFFT | ||
WORKDIR /tmp | ||
RUN curl -k -L https://mafft.cbrc.jp/alignment/software/mafft-${MAFFT_VERSION}-with-extensions-src.tgz > mafft.tgz | ||
RUN tar -zvxf mafft.tgz | ||
RUN cd mafft-${MAFFT_VERSION}-with-extensions/core;make clean; make; make install; cd ../../; rm mafft.tgz | ||
|
||
WORKDIR / | ||
|
||
# ENV LC_ALL=en_US.UTF8 | ||
# ENV LANG=en_US.UTF8 |
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