forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add recipe for pb-CpG-tools (bioconda#53520)
* Add recipe for pb-CpG-tools * Update recipes/pb-cpg-tools/meta.yaml Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com> --------- Co-authored-by: Martin Grigorov <martin-g@users.noreply.github.com>
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
# pb-CpG-tools already auto-extracts to bin directory, so just need to move it to PREFIX | ||
cp -r bin "${PREFIX}"/ | ||
|
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,32 @@ | ||
{% set name = "pb-cpg-tools" %} | ||
{% set version = "3.0.0" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/PacificBiosciences/pb-CpG-tools/releases/download/v{{ version }}/pb-CpG-tools-v{{ version }}-x86_64-unknown-linux-gnu.tar.gz | ||
sha256: 44dc20510edea261ff8db81e5cd13719056ce38c61a99319b14fb9ec55e63a18 | ||
|
||
build: | ||
number: 0 | ||
skip: True # [osx] | ||
run_exports: | ||
- {{ pin_subpackage('pb-cpg-tools', max_pin="x") }} | ||
|
||
test: | ||
commands: | ||
- aligned_bam_to_cpg_scores --version | ||
|
||
about: | ||
home: https://github.com/PacificBiosciences/pb-CpG-tools | ||
license: Pacific Biosciences Software License Agreement | ||
summary: Collection of tools for the analysis of CpG data | ||
|
||
extra: | ||
recipe-maintainers: | ||
- ctsa | ||
skip-lints: | ||
- should_use_compilers | ||
- should_be_noarch_generic |