Skip to content

Commit

Permalink
Initial add telosearchlr-v1.0.0 (#51438)
Browse files Browse the repository at this point in the history
* Initial add telosearchlr-v1.0.0

* build custom telosearchlr-v1.0.0

* build custom telosearchlr-v1.0.0

* build custom telosearchlr-v1.0.0

* build custom telosearchlr-v1.0.0

* build custom telosearchlr-v1.0.0

* build custom telosearchlr-v1.0.1

* build custom telosearchlr-v1.0.1
  • Loading branch information
jayramr authored Oct 22, 2024
1 parent d4fb476 commit 496918d
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
11 changes: 11 additions & 0 deletions recipes/telosearchlr/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

mkdir -p ${PREFIX}/bin
for f in *.py;
do
if ! grep -q "^#!/usr/bin/env python3" "$f"; then
sed -i "1i #!/usr/bin/env python3" "$f"
fi
done
chmod +x *.py
mv *.py $PREFIX/bin
36 changes: 36 additions & 0 deletions recipes/telosearchlr/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{% set name = "TeloSearchLR" %}
{% set version = "1.0.1" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: "https://github.com/gchchung/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz"
sha256: "1f3750f062af9996aba3d0bf6ec2096e8176e9a6597fb15cb91514d5264d3225"

build:
noarch: python
number: 0
run_exports:
- {{ pin_subpackage('telosearchlr', max_pin="x") }}

requirements:
host:
- python >=3.9
run:
- python >=3.9
- Bio
- pillow
- svgutils
- plotly
- tidehunter

test:
commands:
- TeloSearchLR.py -h
about:
home: "https://github.com/gchchung/TeloSearchLR"
license: "Academic and Non-Commercial Research Use"
license_file: LICENSE
summary: "TeloSearchLR (telomere search using long sequencing reads) is a Python script for aiding the identificaiton of telomeric repeat motifs."

0 comments on commit 496918d

Please sign in to comment.