-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial add telosearchlr-v1.0.0 (#51438)
* 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
Showing
2 changed files
with
47 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,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 |
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,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." |