-
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.
PacBio: Initial addition of
pbsv
(#10320)
- Loading branch information
1 parent
b0409a7
commit 68fa218
Showing
2 changed files
with
39 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 | ||
|
||
mkdir -p "${PREFIX}"/bin | ||
cp pbsv "${PREFIX}"/bin/ | ||
chmod +x "${PREFIX}"/bin/pbsv |
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,34 @@ | ||
{% set name = "pbsv" %} | ||
{% set version = "2.0.0" %} | ||
{% set sha256 = "b36969a623aae43b56e685f7aa72b1c3a105082e84f81a0cf2d1e6e5d3769c33" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/PacificBiosciences/pbsv/releases/download/v{{ version }}/pbsv # [linux] | ||
sha256: {{ sha256 }} # [linux] | ||
|
||
about: | ||
home: https://github.com/PacificBiosciences/pbsv | ||
license: Pacific Biosciences Proprietary | ||
summary: "pbsv - Calling All Variants: Fast, Accurate, Population-Scale Structural Variant Analysis from Single-Molecule PacBio Reads" | ||
|
||
extra: | ||
recipe-maintainers: | ||
- armintoepfer | ||
- pb-dseifert | ||
- mhsieh | ||
|
||
build: | ||
number: 0 | ||
skip: True # [osx] | ||
|
||
requirements: | ||
run: | ||
- minimap2 >=2.11 | ||
|
||
test: | ||
commands: | ||
- pbsv -h |