Skip to content

Commit

Permalink
added confttest to define slow and fast tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JLSteenwyk committed Aug 9, 2024
1 parent d51d29e commit dab5293
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
30 changes: 30 additions & 0 deletions change_log.txt
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.
35 changes: 35 additions & 0 deletions docs/setup.py
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,
)
7 changes: 7 additions & 0 deletions tests/conftest.py
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")

0 comments on commit dab5293

Please sign in to comment.