-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
62 lines (55 loc) · 1.31 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{% set name = "reads2graph" %}
{% set version = "1.1.0" %}
{% set sha256 = "1c054034fe139c60d521f349c824885594f30f04695c669d66072002fd1306e4" %}
package:
name: {{ name}}
version: {{ version }}
source:
url: "https://github.com/JappyPing/reads2graph/archive/refs/tags/{{name}}-v{{version}}.tar.gz"
sha256: {{ sha256 }}
build:
number: 0
skip: True # [osx]
run_exports:
- {{ pin_subpackage(name, max_pin="x") }}
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- gxx ==13.2.0
- cmake >=3.21
- make
- seqan3 ==3.3.0
- sharg ==1.1.1
- boost ==1.82.0
- openmp ==8.0.1
- xxhash ==0.8.2
host:
- seqan3 ==3.3.0
- sharg ==1.1.1
- boost ==1.82.0
- openmp ==8.0.1
- xxhash ==0.8.2
run:
- seqan3 ==3.3.0
- sharg ==1.1.1
- boost ==1.82.0
- openmp ==8.0.1
- xxhash ==0.8.2
test:
commands:
- reads2graph --help
- reads2graph --version
about:
home: https://github.com/Jappy0/reads2graph
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: reads2graph is an efficient tool for constructing edit-distance-based read graph from short-read sequencing data.
extra:
identifiers:
- biotools:reads2graph
# additional-platforms:
# - linux-aarch64
recipe-maintainers:
- JappyPing