-
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.
Merge branch 'master' into coptr_pythonVersion
- Loading branch information
Showing
265 changed files
with
3,745 additions
and
2,032 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
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,15 @@ | ||
#!/bin/bash | ||
|
||
if [[ `uname` == "Darwin" ]]; then | ||
export CONFIG_ARGS="-DCMAKE_FIND_FRAMEWORK=NEVER -DCMAKE_FIND_APPBUNDLE=NEVER" | ||
else | ||
export CONFIG_ARGS="" | ||
fi | ||
|
||
cd src || exit 1 | ||
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX="${PREFIX}" \ | ||
-DCMAKE_C_COMPILER="${CC}" \ | ||
-DCMAKE_C_FLAGS="${CFLAGS}" \ | ||
"${CONFIG_ARGS}" | ||
cmake --build build --target install -j "${CPU_COUNT}" -v |
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,46 @@ | ||
{% set version = "2.2" %} | ||
|
||
package: | ||
name: amplici | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/DormanLab/AmpliCI/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: 273362b5449ec29ff411d4c1aa5f89b1ec1eb361c8a9b69a4d89f4409fbdb70e | ||
|
||
build: | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage("amplici", max_pin="x") }} | ||
|
||
requirements: | ||
build: | ||
- cmake | ||
- make | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- {{ compiler('fortran') }} | ||
host: | ||
- zlib | ||
|
||
about: | ||
home: https://github.com/DormanLab/AmpliCI | ||
license: BSD 3-Clause | ||
license_family: BSD | ||
license_file: LICENSE | ||
summary: "AmpliCI: Cluster amplicon sequences in a fastq file with or without UMIs." | ||
dev_url: https://github.com/DormanLab/AmpliCI | ||
|
||
test: | ||
commands: | ||
- run_AmpliCI -h | ||
|
||
extra: | ||
additional-platforms: | ||
- linux-aarch64 | ||
- osx-arm64 | ||
recipe-maintainers: | ||
- xiyupeng | ||
identifiers: | ||
- biotools:amplici | ||
- doi:10.1093/bioinformatics/btaa648 |
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
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
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
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
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
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
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,48 @@ | ||
{% set name = "bam2plot" %} | ||
{% set version = "0.3.6" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/bam2plot-{{ version }}.tar.gz | ||
sha256: 7be991b42db59d0c06ca2f354f906238be3c4f4d0588d85dd1cfd1ec7752a541 | ||
|
||
build: | ||
entry_points: | ||
- bam2plot=bam2plot.main:cli | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
run_exports: | ||
- {{ pin_subpackage('bam2plot', max_pin="x.x") }} | ||
|
||
requirements: | ||
host: | ||
- python >=3.10 | ||
- pip | ||
- setuptools | ||
run: | ||
- python >=3.10 | ||
- pysam >=0.22.0 | ||
- seaborn >=0.13.2 | ||
- polars >=0.20.15 | ||
- mappy >=2.28 | ||
- pyfastx | ||
- pyarrow | ||
- mosdepth | ||
|
||
test: | ||
imports: | ||
- bam2plot | ||
commands: | ||
- bam2plot from_bam --help | ||
- bam2plot from_reads --help | ||
- bam2plot guci --help | ||
|
||
about: | ||
home: https://github.com/willros/bam2plot | ||
summary: Plot of coverage from bam file | ||
license: GPL-3.0-only | ||
license_file: LICENSE |
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
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
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
Oops, something went wrong.