forked from bioconda/bioconda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR bioconda#35412, commits were: * Merge branch 'bioconda:master' into scexecute_bioconda_recipe * Merge branch 'scexecute_bioconda_recipe' of github.com:HorvathLab/bioconda-recipes into scexecute_bioconda_recipe * Remove data subdirectory from conda package * Merge branch 'bioconda:master' into scexecute_bioconda_recipe * another try... * more logging? * hope so? or not? * hope so? * round in circles... * again... * another attempt... * What can I assume about the test command? * Why is this failing? * tweak test command, third attempt * tweak test command, attempt #2 * tweak test command * add summary * Merge branch 'scexecute_bioconda_recipe' of github.com:HorvathLab/bioconda-recipes into scexecute_bioconda_recipe * Add licence * Merge branch 'bioconda:master' into scexecute_bioconda_recipe * Initial bioconda recipe for scexecute and screadcounts
- Loading branch information
Showing
4 changed files
with
94 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 | ||
|
||
TARGET=share/$PKG_NAME-$PKG_VERSION-$PKG_BUILDNUM | ||
mkdir -p $PREFIX/$TARGET/bin | ||
mkdir -p $PREFIX/bin | ||
cp -r * $PREFIX/$TARGET | ||
rm -rf $PREFIX/$TARGET/data | ||
chmod -R a+rX $PREFIX/$TARGET | ||
chmod -R a+rx $PREFIX/$TARGET/bin/* | ||
cd $PREFIX/bin | ||
ln -s ../$TARGET/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,35 @@ | ||
{% set name = "scexecute" %} | ||
{% set version = "1.3.1" %} | ||
{% set md5 = "2be354173821a168e810fecc819bb440" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/HorvathLab/NGS/releases/download/SCExecute-{{ version }}/SCExecute-{{ version }}.Python-3.7.tgz | ||
md5: {{ md5 }} | ||
|
||
build: | ||
noarch: generic | ||
number: 0 | ||
|
||
extra: | ||
skip-lints: | ||
- should_be_noarch_python | ||
|
||
requirements: | ||
run: | ||
- python >=3.7 | ||
- pysam | ||
- wxpython | ||
- samtools | ||
|
||
test: | ||
commands: | ||
- scExecute -h | ||
|
||
about: | ||
home: https://github.com/HorvathLab/NGS/tree/master/SCExecute#readme | ||
summary: "SCExecute generates cell-barcode specific BAM files from aligned, aggregate single-cell sequencing data, executing a user-provided command on each barcode-stratified BAM file." | ||
license: MIT |
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 | ||
|
||
TARGET=share/$PKG_NAME-$PKG_VERSION-$PKG_BUILDNUM | ||
mkdir -p $PREFIX/$TARGET/bin | ||
mkdir -p $PREFIX/bin | ||
cp -r * $PREFIX/$TARGET | ||
rm -rf $PREFIX/$TARGET/data | ||
chmod -R a+rX $PREFIX/$TARGET | ||
chmod -R a+rx $PREFIX/$TARGET/bin/ | ||
cd $PREFIX/bin | ||
ln -s ../$TARGET/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,37 @@ | ||
{% set name = "screadcounts" %} | ||
{% set version = "1.2.0" %} | ||
{% set md5 = "83e591cc26df4c14b5a1d0332cfe5349" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/HorvathLab/NGS/releases/download/SCReadCounts-{{ version }}/SCReadCounts-{{ version }}.Python-3.7.tgz | ||
md5: {{ md5 }} | ||
|
||
build: | ||
noarch: generic | ||
number: 0 | ||
|
||
extra: | ||
skip-lints: | ||
- should_be_noarch_python | ||
|
||
requirements: | ||
run: | ||
- python >=3.7 | ||
- pysam | ||
- wxpython | ||
- samtools | ||
- numpy | ||
- scipy | ||
|
||
test: | ||
commands: | ||
- scReadCounts -h | ||
|
||
about: | ||
home: https://github.com/HorvathLab/NGS/tree/master/SCReadCounts#readme | ||
summary: "SCReadCounts is a computational tool for a cell-level assessment of the read counts bearing a particular nucleotide at genomic positions of interest from single cell RNA sequencing (scRNA-seq) data." | ||
license: MIT |