-
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.
added confttest to define slow and fast tests
- Loading branch information
1 parent
d51d29e
commit dab5293
Showing
3 changed files
with
72 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,30 @@ | ||
Major changes to ClipKIT are summarized here. | ||
|
||
2.2.3 | ||
Fixed gap character handling. The help message was incongruent | ||
with what was happening underneath the hood. | ||
|
||
2.2.1 | ||
Removed "Processing" block from CLI output. Reordered CLI output to | ||
put user arguments first followed by outputs. Added original length of | ||
the alignment to output statistics. | ||
|
||
2.2.0 | ||
Incorporated C3 trimming, which can be evoked using the c3 trimming mode. | ||
|
||
2.1.2 | ||
Incorporate codon-based trimming. When one position in a codon gets trimmed based on the mode | ||
being used, the whole codon will get trimmed from the alignment. | ||
|
||
2.0.0 through 2.1.0 | ||
Introduce and refactor MSA class. Rely on Numpy functionality to accelerate processes. | ||
|
||
1.3.0 | ||
long description of sequences, rather than identifiers, are kept in the ClipKIT output | ||
|
||
1.1.5 | ||
carried over code base to biopython, v1.79 | ||
|
||
1.1.0 | ||
smart-gap trimming is introduced and is now the default trimming approach used in ClipKIT. | ||
smart-gap trimming is a dynamic approach to determine the appropriate gaps threshold for an alignment. |
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 @@ | ||
from os import path | ||
from setuptools import setup | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(here, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
CLASSIFIERS = [ | ||
"Operating System :: OS Independent", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
|
||
REQUIRES = ["biopython==1.76", "numpy==1.21.0"] | ||
|
||
setup( | ||
name="clipkit", | ||
description="Alignment trimming software for phylogenetics.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Jacob L. Steenwyk", | ||
author_email="[email protected]", | ||
url="https://github.com/jlsteenwyk/clipkit", | ||
packages=["clipkit"], | ||
classifiers=CLASSIFIERS, | ||
entry_points={"console_scripts": ["clipkit = clipkit.clipkit:main"]}, | ||
version="0.1.3", | ||
include_package_data=True, | ||
install_requires=REQUIRES, | ||
) |
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,7 @@ | ||
# global fixtures can go here | ||
import pytest | ||
|
||
|
||
def pytest_configure(config): | ||
config.addinivalue_line("markers", "integration: mark as integration test") | ||
config.addinivalue_line("markers", "slow: mark as slow test") |