Skip to content
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

Update syngap to v1.2.1 #47894

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions recipes/syngap/build.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
#!/usr/bin/env bash
set -xe
df -h
du -sch $CONDA_PREFIX
yanyew marked this conversation as resolved.
Show resolved Hide resolved
mkdir -p $PREFIX/bin
cp -rf $SRC_DIR/bin $PREFIX/bin
cp -rf $SRC_DIR/scripts $PREFIX/bin
df -h
yanyew marked this conversation as resolved.
Show resolved Hide resolved
cp $SRC_DIR/SynGAP.py $PREFIX/bin
cp $SRC_DIR/initdb.py $PREFIX/bin
df -h
cp $SRC_DIR/master.py $PREFIX/bin
cp $SRC_DIR/dual.py $PREFIX/bin
df -h
cp $SRC_DIR/triple.py $PREFIX/bin
cp $SRC_DIR/custom.py $PREFIX/bin
df -h
cp $SRC_DIR/genepair.py $PREFIX/bin
cp $SRC_DIR/evi.py $PREFIX/bin
cp $SRC_DIR/eviplot.py $PREFIX/bin
df -h
29 changes: 9 additions & 20 deletions recipes/syngap/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,24 @@
{% set name = "syngap" %}
{% set version = "1.1.1" %}
{% set version = "1.2.1" %}

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

source:
url: https://github.com/yanyew/SynGAP/releases/download/v{{ version }}/{{ name }}_v{{ version }}.tar.gz
sha256: 4756cba6ede6cef4d7784a46bc2add4dd5eabf2136b39fc982592d031b55e064
sha256: e3dc525fb6a39c7b23209d9b1f4167bf9ac85e9f95a97a1aafee7d69d9cd3d33

build:
number: 0
entry_points:
- syngap = SynGAP:main
noarch: generic
run_exports:
- python
- biopython
- jcvi
- bedtools
- last
- emboss
- gffread
- seqkit
- diamond
- perl-bioperl
- kneed
- numpy
- pandas
- matplotlib-base
run_exports: '{{ pin_subpackage(name, max_pin="x") }}'

requirements:
bulid:
- python >=3.10
#bulid:
# - python >=3.10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove the commented out lines.

run:
- python >=3.10
- biopython >=1.81
Expand Down Expand Up @@ -83,7 +69,9 @@ test:
- genepair
- evi
- eviplot
commands:
commands:
- df -h
- du -sch $CONDA_PREFIX
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the debug

- syngap -h
- syngap initdb -h
- syngap master -h
Expand All @@ -93,6 +81,7 @@ test:
- syngap genepair -h
- syngap evi -h
- syngap eviplot -h
- df -h
yanyew marked this conversation as resolved.
Show resolved Hide resolved

about:
home: https://github.com/yanyew/SynGAP
Expand Down