Skip to content

Commit

Permalink
Merge pull request #5 from WTAC-NGS/master
Browse files Browse the repository at this point in the history
Added software for group projects
  • Loading branch information
jacquikeane authored Nov 30, 2020
2 parents 32e8dcc + 73cdbdd commit 2f0f783
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 9 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ RUN conda install wtdbg
RUN wget https://raw.githubusercontent.com/schatzlab/genomescope/d2aefddd32ce48aa1144d9fbd80ed6b37785cd8d/genomescope.R
RUN mv genomescope.R /miniconda/bin
RUN chmod 754 /miniconda/bin/genomescope.R
#Group projects
RUN conda install freebayes
RUN conda install gatk4

# Install git
RUN conda install git
Expand Down
5 changes: 4 additions & 1 deletion build_machine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,16 @@ conda install macs2
conda install meme
conda install ucsc-bedgraphtobigwig
conda install ucsc-fetchchromsizes
# Asembly module
# Assembly module
conda install assembly-stats
conda install canu
conda install kmer-jellyfish
conda install seqtk
conda install velvet
conda install wtdbg
# Group projects
conda install freebayes
conda install gatk4

#Install genomescope.R (not available via bioconda)
wget https://raw.githubusercontent.com/schatzlab/genomescope/d2aefddd32ce48aa1144d9fbd80ed6b37785cd8d/genomescope.R
Expand Down
6 changes: 5 additions & 1 deletion install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,17 @@ conda install macs2
conda install meme
conda install ucsc-bedgraphtobigwig
conda install ucsc-fetchchromsizes
# Asembly module
# Assembly module
conda install assembly-stats
conda install canu
conda install kmer-jellyfish
conda install seqtk
conda install velvet
conda install wtdbg
# Group projects
conda install freebayes
conda install gatk4

#Install genomescope.R (not available via bioconda)
wget ${GENOMESCOPE_DOWNLOAD_URL}
mv genomescope.R ${MINICONDA_BIN_LOCATION}
Expand Down
19 changes: 12 additions & 7 deletions instruction_summary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,30 +64,35 @@ conda install seqtk
conda install velvet
conda install wtdbg2

12) Install genomescope (only software outside of bioconda)
13) Install the software for group projects

conda install freebayes
conda install gatk4

14) Install genomescope (only software outside of bioconda)

Download the R file, move it to the bin directory and make it executable
wget https://raw.githubusercontent.com/schatzlab/genomescope/d2aefddd32ce48aa1144d9fbd80ed6b37785cd8d/genomescope.R
mv genomescope.R $HOME/miniconda/bin
chmod 754 $HOME/miniconda/genomescope.R

13) Install samtools last to ensure latest version is installed
15) Install samtools last to ensure latest version is installed

conda install samtools=1.10

14) Install git
16) Install git

conda install git

15) Install the course modules (command to be completed once the repos are ready)
17) Install the course modules (command to be completed once the repos are ready)

git clone <repo>

16) Run a test script to check installs (tests/test_software.sh)
18) Run a test script to check installs (tests/test_software.sh)

17) Run the module test scripts (tests/test_unix.sh etc.)
19) Run the module test scripts (tests/test_unix.sh etc.)

18)Issues to address:
20)Issues to address:

Install the web browsers firefox and chrome
Install a pdfviewer
Expand Down
2 changes: 2 additions & 0 deletions to_install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ kmer-jellyfish
seqtk
velvet
wtdbg
freebayes
gatk
genomescope
git
firefox
Expand Down

0 comments on commit 2f0f783

Please sign in to comment.