-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'bioconda:master' into instanovo_gpu
- Loading branch information
Showing
8 changed files
with
140 additions
and
19 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
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{% set name = "mzspeclib" %} | ||
{% set version = "1.0.1" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/mzspeclib-{{ version }}.tar.gz | ||
sha256: 44ed541be54f08d68b89b71f5892bbfc7458c8243df70c60774e2b07a939aaa2 | ||
|
||
build: | ||
entry_points: | ||
- mzspeclib = mzspeclib.tools.cli:main | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('mzspeclib', max_pin="x") }} | ||
|
||
requirements: | ||
host: | ||
- python >=3.8 | ||
- setuptools | ||
- pip | ||
run: | ||
- python >=3.8 | ||
- sqlalchemy | ||
- click | ||
- psims >=1.3.4 | ||
- pyteomics >=4.5.3 | ||
- mzpaf | ||
|
||
test: | ||
imports: | ||
- mzspeclib | ||
commands: | ||
- pip check | ||
- mzspeclib --help | ||
requires: | ||
- pip | ||
|
||
about: | ||
summary: HUPO-PSI Spectral library format | ||
home: https://github.com/HUPO-PSI/mzSpecLib | ||
license: CC-BY-4.0 | ||
license_family: CC | ||
license_file: docs/LICENSE.txt | ||
doc_url: https://mzspeclib-py.readthedocs.io/en/latest/ | ||
dev_url: https://github.com/HUPO-PSI/mzspeclib-py | ||
|
||
extra: | ||
recipe-maintainers: | ||
- hechth |
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,11 @@ | ||
#!/bin/bash | ||
|
||
set -xe | ||
|
||
export LIBRARY_PATH="$PREFIX/lib" | ||
|
||
mkdir -p $PREFIX/bin | ||
make CC=$CC CFLAGS="-g -Wall -O2 -I$PREFIX/include -L$PREFIX/lib" | ||
make -j"${CPU_COUNT}" CC=$CC CFLAGS="-g -Wall -O2 -I$PREFIX/include -L$PREFIX/lib" | ||
cp psmc $PREFIX/bin | ||
cd utils && make CC=$CC CFLAGS="-g -Wall -O2 -I$PREFIX/include -L$PREFIX/lib" | ||
cd utils && make -j"${CPU_COUNT}" CC=$CC CFLAGS="-g -Wall -O2 -I$PREFIX/include -L$PREFIX/lib" | ||
cp * $PREFIX/bin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{% set name = "sprinter" %} | ||
{% set version = "1.0.0" %} | ||
|
||
package: | ||
name: '{{ name|lower }}' | ||
version: '{{ version }}' | ||
|
||
source: | ||
url: https://github.com/zaccaria-lab/SPRINTER/archive/v{{ version }}.zip | ||
sha256: e205cc6888f87fc2f345dad698308bc6397f6292ae2f4122d4c82d72a836e706 | ||
|
||
build: | ||
noarch: python | ||
number: 0 | ||
entry_points: | ||
- sprinter = sprinter.bin.sprinter:main | ||
script: | | ||
set -ex | ||
{{ PYTHON }} -m pip install . --ignore-installed --no-deps -vv | ||
run_exports: | ||
- {{ pin_subpackage(name, max_pin='x.x') }} | ||
|
||
requirements: | ||
host: | ||
- python >=3.9 | ||
- pip | ||
- setuptools | ||
run: | ||
- python >=3.9 | ||
- numpy >=1.22.0,<=1.26.4 | ||
- pandas >=1.3.0 | ||
- scipy >=1.7.0,<2.0.0 | ||
- statsmodels >=0.13.0 | ||
- hmmlearn >=0.2.7 | ||
- matplotlib-base >=3.5.0 | ||
- pybedtools >=0.8.0 | ||
- scikit-learn >=1.0.0,<2.0.0 | ||
- seaborn >=0.11.0 | ||
- numba >=0.55.0 | ||
|
||
test: | ||
imports: | ||
- sprinter | ||
- sprinter.bin | ||
commands: | ||
- sprinter -h | ||
|
||
about: | ||
home: https://github.com/zaccaria-lab/SPRINTER | ||
summary: Single-cell Proliferation Rate Inference in Non-homogeneous Tumours through Evolutionary Routes (SPRINTER) | ||
license: ACADEMIC NON-COMMERCIAL SOFTWARE LICENSE | ||
license_family: OTHER | ||
license_file: LICENSE.txt | ||
dev_url: https://github.com/zaccaria-lab/SPRINTER | ||
doc_url: https://github.com/zaccaria-lab/SPRINTER/blob/v{{ version }}/README.md | ||
description: SPRINTER is an algorithm that uses single-cell whole-genome DNA sequencing data to enable the accurate identification of actively replicating cells in both the S and G2 phases of the cell cycle and their assignment to distinct tumour clones, thus providing a proxy to estimate clone-specific proliferation rates. |