-
Notifications
You must be signed in to change notification settings - Fork 10
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
benhid
committed
Feb 6, 2020
1 parent
91ea3c2
commit 570d902
Showing
6 changed files
with
19 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from .core.score import Score, SumOfPairs, Star, Entropy, Strike, PercentageOfNonGaps, PercentageOfTotallyConservedColumns | ||
from .core.msa import MSA | ||
from .core.score import SumOfPairs, Star, Entropy, Strike, PercentageOfNonGaps, PercentageOfTotallyConservedColumns | ||
from .core.substitution_matrix import SubstitutionMatrix, FileMatrix, PAM250, Blosum62 | ||
from .util.fasta import read_fasta_file_as_list_of_pairs, print_alignment | ||
from .util.tool import Tool, StrikeEx | ||
|
||
__all__ = [ | ||
'Score', 'SumOfPairs', 'Star', 'Strike', 'Entropy', 'PercentageOfNonGaps', 'PercentageOfTotallyConservedColumns', | ||
'MSA', | ||
'SumOfPairs', 'Star', 'Strike', 'Entropy', 'PercentageOfNonGaps', 'PercentageOfTotallyConservedColumns', | ||
'SubstitutionMatrix', 'FileMatrix', 'PAM250', 'Blosum62', | ||
'read_fasta_file_as_list_of_pairs', 'print_alignment', | ||
'Tool', 'StrikeEx' | ||
] |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
from typing import List | ||
|
||
from pymsa.core.msa import MSA | ||
|
||
|
||
|
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,26 +1,31 @@ | ||
from setuptools import setup, find_packages | ||
from os.path import abspath, dirname, join | ||
|
||
from setuptools import find_packages, setup | ||
|
||
basedir = abspath(dirname(__file__)) | ||
|
||
with open(join(basedir, 'README.md'), encoding='utf-8') as f: | ||
README = f.read() | ||
|
||
setup( | ||
name='pyMSA', | ||
version='0.8', | ||
version='0.8.1', | ||
description='Scoring Multiple Sequence Alignments with Python', | ||
long_description=README, | ||
long_description_content_type='text/markdown', | ||
author='Antonio Benítez-Hidalgo, Antonio J. Nebro', | ||
author_email='[email protected]', | ||
maintainer='Antonio Benítez-Hidalgo', | ||
maintainer_email='antonio.b@uma.es', | ||
maintainer_email='antonio.benitez@lcc.uma.es', | ||
license='MIT', | ||
url='https://github.com/benhid/pyMSA', | ||
long_description=open('README.md').read(), | ||
packages=find_packages(exclude=["test.*", "tests"]), | ||
python_requires='>=3', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Programming Language :: Python :: 3.6' | ||
], | ||
install_requires=[ | ||
'click' | ||
] | ||
python_requires='>=3' | ||
) |