Skip to content

Commit

Permalink
Add TKSM (#41444)
Browse files Browse the repository at this point in the history
* Add TKSM

* Fix missing xxd

* Add {{ python }} to fix python version for build/host/run

* add conda_build_config, update meta.yaml

* Update build.sh

* Update build.sh

* Update conda_build_config.yaml

* Update conda_build_config.yaml

* Update conda_build_config.yaml

* Update conda_build_config.yaml

* Update conda_build_config.yaml

* Update conda_build_config.yaml

* Update conda_build_config.yaml

* Removed py3.11

* Add python3.11

* Skip OSX; Skip py<3.8

---------

Co-authored-by: Baraa Orabi /baraːʔ ʕraːbi/ <[email protected]>
  • Loading branch information
f0t1h and baraaorabi authored Jun 19, 2023
1 parent 41ac570 commit 098bc7d
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
4 changes: 4 additions & 0 deletions recipes/tksm/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
INSTALL_PREFIX="${PREFIX}" make -j${CPU_COUNT}
mkdir -p ${PREFIX}/bin
./install.sh
3 changes: 3 additions & 0 deletions recipes/tksm/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cxx_compiler_version:
- "12" # [linux]
- "16" # [osx]
47 changes: 47 additions & 0 deletions recipes/tksm/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set version = "0.3.0" %}
{% set sha256 = "627f98512105ccec2c9b65900b33a907bb54ee3dc71495fc98edf4a2660d6420" %}

package:
name: tksm
version: {{ version }}

source:
- url: https://github.com/vpc-ccg/tksm/archive/v{{ version }}.zip
sha256: {{ sha256 }}

build:
number: 0
skip: True # [py<3.8 or osx]

requirements:
build:
- {{ compiler('cxx') }}
- python {{ python }}
- zlib
- make
- vim
- lld
host:
- python {{ python }}
- zlib
- cxxopts >=3.1.0
- fmt >=9.1.0
run:
- python {{ python }}
- zlib
- python-edlib
- numpy
- joblib
- tqdm
- scikit-learn

test:
commands:
- tksm sequence --help


about:
home: https://github.com/vpc-ccg/tksm
license: MIT
license_file: LICENSE
summary: Very modular, very cool long-read transcriptomic simulator

0 comments on commit 098bc7d

Please sign in to comment.