-
Notifications
You must be signed in to change notification settings - Fork 15
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 #62 from databio/hotfix-0.8.1
Hotfix 0.8.1
- Loading branch information
Showing
6 changed files
with
49 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ FROM phusion/baseimage:0.10.1 | |
LABEL maintainer Jason Smith "[email protected]" | ||
|
||
# Version info | ||
LABEL version 0.8.2 | ||
LABEL version 0.8.5 | ||
|
||
# Use baseimage-docker's init system. | ||
CMD ["/sbin/my_init"] | ||
|
@@ -40,6 +40,7 @@ RUN pip install --upgrade pip | |
RUN pip install virtualenv && \ | ||
pip install numpy && \ | ||
pip install MACS2 && \ | ||
pip install pandas && \ | ||
pip install pararead && \ | ||
pip install piper | ||
|
||
|
@@ -114,14 +115,17 @@ RUN wget http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/bedGraphToBigWig | |
wget http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/wigToBigWig && \ | ||
wget http://hgdownload.soe.ucsc.edu/admin/exe/linux.x86_64/bigWigCat && \ | ||
wget http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedSort && \ | ||
wget http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/bedToBigBed && \ | ||
chmod +x /home/tools/bedGraphToBigWig && \ | ||
chmod +x /home/tools/wigToBigWig && \ | ||
chmod +x /home/tools/bigWigCat && \ | ||
chmod +x /home/tools/bedSort && \ | ||
chmod +x /home/tools/bedToBigBed && \ | ||
ln -s /home/tools/bedGraphToBigWig /usr/bin/ && \ | ||
ln -s /home/tools/wigToBigWig /usr/bin/ && \ | ||
ln -s /home/tools/bigWigCat /usr/bin/ && \ | ||
ln -s /home/tools/bedSort /usr/bin/ | ||
ln -s /home/tools/bedSort /usr/bin/ && \ | ||
ln -s /home/tools/bedToBigBed /usr/bin/ | ||
|
||
# Install Skewer | ||
WORKDIR /home/src/ | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
__author__ = ["Jin Xu", "Nathan Sheffield", "Jason Smith"] | ||
__email__ = "[email protected]" | ||
__version__ = "0.8.0" | ||
__version__ = "0.8.2" | ||
|
||
|
||
from argparse import ArgumentParser | ||
|
@@ -31,7 +31,8 @@ def parse_arguments(): | |
########################################################################### | ||
parser = ArgumentParser(description='PEPATAC version ' + __version__) | ||
parser = pypiper.add_pypiper_args(parser, groups= | ||
['pypiper', 'looper', 'ngs'], required=["input", "genome", "sample-name"]) | ||
['pypiper', 'looper', 'ngs'], | ||
required=["input", "genome", "sample-name", "output-parent"]) | ||
|
||
# Pipeline-specific arguments | ||
parser.add_argument("-gs", "--genome-size", default="hs", type=str, | ||
|
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