-
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.
recipe for scROSHI package based on CRAN repo (#52783)
* bioconda recipe conf for scROSHI package * discarded strict package version constraints * Update meta.yaml --------- Co-authored-by: Björn Grüning <[email protected]>
- Loading branch information
Showing
2 changed files
with
76 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,22 @@ | ||
#!/bin/bash | ||
|
||
# 'Autobrew' is being used by more and more packages these days | ||
# to grab static libraries from Homebrew bottles. These bottles | ||
# are fetched via Homebrew's --force-bottle option which grabs | ||
# a bottle for the build machine which may not be macOS 10.9. | ||
# Also, we want to use conda packages (and shared libraries) for | ||
# these 'system' dependencies. See: | ||
# https://github.com/jeroen/autobrew/issues/3 | ||
export DISABLE_AUTOBREW=1 | ||
|
||
# R refuses to build packages that mark themselves as Priority: Recommended | ||
mv DESCRIPTION DESCRIPTION.old | ||
grep -va '^Priority: ' DESCRIPTION.old > DESCRIPTION | ||
# shellcheck disable=SC2086 | ||
${R} CMD INSTALL --build . ${R_ARGS} | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# https://docs.conda.io/projects/conda-build | ||
# for a list of environment variables that are set during the build process. |
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,54 @@ | ||
{% set version = '1.0.0.0' %} | ||
|
||
package: | ||
name: r-scroshi | ||
version: {{ version }} | ||
|
||
source: | ||
url: | ||
- {{ cran_mirror }}/src/contrib/scROSHI_{{ version|replace("-", "_") }}.tar.gz | ||
- {{ cran_mirror }}/src/contrib/Archive/scROSHI/scROSHI_{{ version|replace("-", "_") }}.tar.gz | ||
sha256: 332ed379c27d4becfae31f164e6267850cd927dbb357c3a77de1f320d65baf96 | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage("r-scroshi", max_pin="x") }} | ||
rpaths: | ||
- lib/R/lib/ | ||
- lib/ | ||
noarch: generic | ||
|
||
requirements: | ||
host: | ||
- r-base >=3.6.0 | ||
- bioconductor-s4vectors | ||
- bioconductor-singlecellexperiment | ||
- bioconductor-summarizedexperiment | ||
- bioconductor-limma | ||
- r-uwot | ||
|
||
run: | ||
- r-base >=3.6.0 | ||
- bioconductor-s4vectors | ||
- bioconductor-singlecellexperiment | ||
- bioconductor-summarizedexperiment | ||
- bioconductor-limma | ||
- r-uwot | ||
|
||
test: | ||
commands: | ||
- $R -e "library('scROSHI')" # [not win] | ||
- "\"%R%\" -e \"library('scROSHI')\"" # [win] | ||
|
||
about: | ||
home: https://CRAN.R-project.org/package=scROSHI | ||
license: MIT | ||
summary: 'scROSHI: robust supervised hierarchical identification of single cells' | ||
license_family: MIT | ||
license_file: | ||
- '{{ environ["PREFIX"] }}/lib/R/share/licenses/MIT' | ||
- LICENSE | ||
extra: | ||
identifiers: | ||
- doi:10.1093/nargab/lqad058 |