-
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.
- Loading branch information
1 parent
d8a6fc6
commit 02cf95f
Showing
6 changed files
with
293 additions
and
65 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 |
---|---|---|
@@ -1,14 +1,20 @@ | ||
[![PyPI](https://img.shields.io/pypi/v/blast2galaxy?color=blue&label=PyPI.org)](https://pypi.org/project/blast2galaxy/) | ||
[![Docker Image Version (latest semver)](https://img.shields.io/docker/v/ipkbit/blast2galaxy?color=blue&label=DockerHub)](https://hub.docker.com/r/ipkbit/blast2galaxy) | ||
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/IPK-BIT/blast2galaxy?color=blue&label=Github) | ||
|
||
|
||
|
||
[![Python](https://img.shields.io/pypi/pyversions/blast2galaxy.svg?color=green)](https://badge.fury.io/py/blast2galaxy) | ||
[![PyPI Downloads](https://img.shields.io/pypi/dm/blast2galaxy.svg?label=PyPI%20downloads)](https://pypi.org/project/blast2galaxy/) | ||
![License](https://img.shields.io/github/license/IPK-BIT/divbrowse) | ||
|
||
|
||
# blast2galaxy | ||
|
||
|
||
## About | ||
blast2galaxy is a Python package that provides a NCBI BLAST like CLI to perform BLAST searches against BLAST databases installed on Galaxy servers. | ||
|
||
## Installation | ||
|
||
``` | ||
pip install blast2galaxy | ||
``` | ||
|
||
## Documentation | ||
|
||
tbd | ||
See https://ipk-bit.github.io/blast2galaxy/ |
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,17 @@ | ||
import nox | ||
from nox_poetry import session | ||
|
||
nox.options.sessions = ["tests"] | ||
nox.options.default_venv_backend = "mamba" | ||
nox.options.reuse_venv = True | ||
|
||
@session(python=["3.10", "3.11", "3.12"], reuse_venv=True) | ||
def tests(session): | ||
session.conda_install("python=" + session.python) | ||
|
||
#session.install("poetry") | ||
#session.run("poetry", "install") | ||
#session.run("poetry", "run", "pytest") | ||
|
||
session.install("pytest", ".") | ||
session.run("pytest") |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.