-
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.
- Loading branch information
Showing
271 changed files
with
11,691 additions
and
1,197 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
set -euo pipefail | ||
set -xeuo pipefail | ||
|
||
mkdir -p $PREFIX/lib/auspice | ||
pushd $PREFIX/lib/auspice | ||
|
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,44 @@ | ||
{% set name = "Bamsurgeon" %} | ||
{% set version = "1.4.1" %} | ||
|
||
package: | ||
name: '{{ name|lower }}' | ||
version: '{{ version }}' | ||
|
||
source: | ||
url: https://github.com/adamewing/{{ name }}/archive/refs/tags/{{ version }}.tar.gz | ||
sha256: 137981f16df21fe5b4f602c641372a20643a8bb92e6c6dddace499427417213f | ||
patches: | ||
- pyproject.patch | ||
|
||
build: | ||
run_exports: | ||
- {{ pin_subpackage('bamsurgeon', max_pin="x") }} | ||
script: "{{ PYTHON }} -m pip install --no-deps --ignore-installed --no-cache-dir -vvv ." | ||
number: 0 | ||
noarch: python | ||
|
||
requirements: | ||
host: | ||
- python >=3.6 | ||
- pip | ||
run: | ||
- python >=3.6 | ||
- samtools >=1.2 | ||
- bwa >=0.7.12 | ||
- exonerate >=2.2 | ||
- velvet >=1.2 | ||
- wgsim >=0.2 | ||
- pysam | ||
- picard | ||
|
||
test: | ||
commands: | ||
- addsv.py -h | ||
- addsnv.py -h | ||
- addindel.py -h | ||
about: | ||
home: https://github.com/adamewing/bamsurgeon | ||
license: MIT-license | ||
license_file: LICENSE.txt | ||
summary: Tools for adding genomic variants to BAM/SAM/CRAM files. Can be used to test variant callers. |
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,38 @@ | ||
new file mode 100644 | ||
--- /dev/null | ||
+++ pyproject.toml | ||
@@ -0,0 +1,34 @@ | ||
+[build-system] | ||
+requires = ["setuptools>=61.0"] | ||
+build-backend = "setuptools.build_meta" | ||
+ | ||
+[project] | ||
+name = "bamsurgeon" | ||
+description = "Tools for adding mutations to existing bam files, used for testing mutation callers" | ||
+readme = "README.md" | ||
+requires-python = ">=3.6" | ||
+license = {file = "LICENSE.txt"} | ||
+classifiers = [ | ||
+ "License :: OSI Approved :: MIT License", | ||
+ "Programming Language :: Python :: 3", | ||
+ "Topic :: Scientific/Engineering", | ||
+ "Topic :: Scientific/Engineering :: Bio-Informatics", | ||
+ "Intended Audience :: Science/Research", | ||
+ "Natural Language :: English", | ||
+] | ||
+dependencies = [] | ||
+version = "1.4.1" | ||
+ | ||
+[project.urls] | ||
+"Homepage" = "https://github.com/adamewing/bamsurgeon" | ||
+ | ||
+[tool.setuptools] | ||
+script-files = [ | ||
+ "bin/addindel.py", | ||
+ "bin/addsnv.py", | ||
+ "bin/addsv.py" | ||
+] | ||
+ | ||
+[tool.setuptools.packages.find] | ||
+where = ["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
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
Oops, something went wrong.