-
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.
Feature/proteome annotation 20240921 (#10)
* version -> 0.10.0 * added `cayman annotate_proteome` and moved standard profiling to `cayman profile` * updated readme --------- Co-authored-by: karchern <[email protected]>
- Loading branch information
Showing
14 changed files
with
577 additions
and
244 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
*.egg-info/ | ||
*__pycache__* | ||
dist/ | ||
gqlib/ | ||
gqlib/ | ||
build/ |
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,7 +1,7 @@ | ||
FROM ubuntu:22.04 | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="0.8.4" | ||
LABEL version="0.10.0" | ||
LABEL description="cayman - profiling carbohydrate active enzymes in metagenomic/transcriptomic wgs samples" | ||
|
||
|
||
|
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 +1 @@ | ||
Singularity.v0.8.4 | ||
Singularity.v0.10.0 |
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,29 @@ | ||
Bootstrap: docker | ||
From: ubuntu:20.04 | ||
IncludeCmd: yes | ||
|
||
%labels | ||
MAINTAINER cschu ([email protected]) | ||
VERSION v0.10.0 | ||
|
||
%environment | ||
export LC_ALL=C | ||
|
||
%post | ||
apt-get update | ||
apt-get install -y apt-transport-https apt-utils software-properties-common | ||
apt-get install -y add-apt-key | ||
export DEBIAN_FRONTEND=noninteractive | ||
ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime | ||
apt-get install -y tzdata | ||
dpkg-reconfigure --frontend noninteractive tzdata | ||
|
||
apt-get install -y wget python3-pip git gawk bwa | ||
|
||
|
||
mkdir -p /opt/software && \ | ||
cd /opt/software && \ | ||
git clone https://github.com/zellerlab/cayman.git && \ | ||
cd cayman && \ | ||
pip install . | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
""" module docstring """ | ||
__version__ = "0.9.7" | ||
__version__ = "0.10.0" | ||
__toolname__ = "cayman" |
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
Empty file.
Oops, something went wrong.