-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add pantax #50983
Merged
Merged
add pantax #50983
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
5268cf5
Create build.sh
zwh82 26c947f
Create meta.yaml
zwh82 3ea2ff2
Merge branch 'bioconda:master' into pantax
zwh82 cf7ac6c
Update meta.yaml
zwh82 dea4574
Update build.sh
zwh82 5b16876
Update meta.yaml
zwh82 fe19494
Update meta.yaml
zwh82 15006dd
Update build.sh
zwh82 fa9a0c5
Update meta.yaml
zwh82 dfb06a8
Update build.sh
zwh82 1bef665
Update recipes/pantax/meta.yaml
zwh82 3825b81
Update meta.yaml
zwh82 4a53b89
Update build.sh
zwh82 60d398c
Update build.sh
zwh82 80218be
Update meta.yaml
zwh82 10c9f3a
Update recipes/pantax/meta.yaml
zwh82 9b9dd6c
Update meta.yaml
zwh82 41021f1
Update meta.yaml
zwh82 83fa662
Update build.sh
zwh82 ac057c5
Update build.sh
zwh82 34e2e53
Update meta.yaml
zwh82 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ "$(uname)" == "Darwin" ]; then | ||
cp -rf $SRC_DIR $PREFIX | ||
else | ||
martin-g marked this conversation as resolved.
Show resolved
Hide resolved
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
cd ${SRC_DIR}/scripts | ||
chmod +x pantax | ||
chmod +x data_preprocessing | ||
cp ${SRC_DIR}/scripts/pantax ${SRC_DIR}/scripts/data_preprocessing ${PREFIX}/bin | ||
cp ${SRC_DIR}/scripts/*py ${PREFIX}/bin | ||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
cd ${SRC_DIR}/tools/fastix | ||
RUST_BACKTRACE=1 cargo install --verbose --locked --no-track --root ${PREFIX} --path . | ||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
fi | ||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
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,52 @@ | ||
{% set name = "pantax" %} | ||
{% set version = "1.0.2" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
- url: https://github.com/LuoGroup2023/PanTax/releases/download/v{{ version }}/{{ name }}.tar.gz | ||
sha256: 9433f3d6c5ca6870de4aa0d92cfc591973fda5f8620f5a8e9befa01f954b8dfb | ||
|
||
build: | ||
skip: True # [osx] | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage(name, max_pin="x") }} | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('rust') }} | ||
host: | ||
- python ==3.10 | ||
- pip | ||
run: | ||
- python =3.10 | ||
martin-g marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- samtools =1.19.2 | ||
- bcftools =1.19 | ||
- htslib =1.19.1 | ||
- pggb =0.6.0 | ||
- vg | ||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- graphaligner =1.0.17 | ||
- h5py =3.10.0 | ||
- pandas =2.2.0 | ||
- tqdm | ||
- numpy =1.26.3 | ||
- networkx =3.2.1 | ||
- pyarrow =14.0.2 | ||
|
||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
test: | ||
commands: | ||
- pantax -h | ||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
about: | ||
home: https://github.com/LuoGroup2023/PanTax | ||
license: GPL-3.0-or-later | ||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
license_file: LICENSE | ||
license_family: GPL3 | ||
summary: Strain-level taxonomic classification of metagenomic data using pangenome graphs | ||
|
||
extra: | ||
skip-lints: | ||
- should_be_noarch_python | ||
zwh82 marked this conversation as resolved.
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The meta.yaml says to skip OSX