-
Notifications
You must be signed in to change notification settings - Fork 20
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
9 changed files
with
162 additions
and
102 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,35 +12,21 @@ | |
__email__ = ["[email protected]", "[email protected]"] | ||
|
||
# Native imports | ||
from operator import index | ||
import os | ||
import math | ||
import time | ||
from configparser import ConfigParser | ||
import ast | ||
from re import sub | ||
import logging | ||
from copy import deepcopy | ||
|
||
# Numpy | ||
import numpy as np | ||
|
||
# Pandas | ||
import pandas as pd | ||
|
||
from psm_utils.io.peptide_record import peprec_to_proforma | ||
from psm_utils.psm import PSM | ||
from psm_utils.psm_list import PSMList | ||
from pyteomics import mass | ||
|
||
from functools import lru_cache | ||
|
||
from psm_utils.io.peptide_record import peprec_to_proforma | ||
from psm_utils.psm import PSM | ||
from psm_utils.psm_list import PSMList | ||
from psm_utils.io import read_file | ||
from psm_utils.io import write_file | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
|
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,65 @@ | ||
[project] | ||
name = "deeplc" | ||
version = "2.2.27" | ||
description = "DeepLC: Retention time prediction for (modified) peptides using Deep Learning." | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
authors = [ | ||
{ name = "Robbin Bouwmeester", email = "[email protected]" }, | ||
{ name = "Niels Hulstaert" }, | ||
{ name = "Arthur Declercq" }, | ||
{ name = "Ralf Gabriels" }, | ||
{ name = "Lennart Martens" }, | ||
{ name = "Sven Degroeve" }, | ||
] | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Development Status :: 5 - Production/Stable", | ||
] | ||
requires-python = ">=3.7" | ||
keywords = [ | ||
"DeepLC", | ||
"Proteomics", | ||
"deep learning", | ||
"peptides", | ||
"retention time", | ||
"prediction", | ||
] | ||
|
||
dependencies = [ | ||
"tensorflow>=2.2,<2.13.0", | ||
"numpy>=1.17,<2", | ||
"pandas>=0.25,<2", | ||
"h5py>=2.10.0,<4", | ||
"pygam>=0.8.0,<1", | ||
"deeplcretrainer>=0.1,<1", | ||
"psm_utils>=0.2.3,<1", | ||
"hdf5plugin>=4.1.1", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest", "matplotlib>=3,<4"] | ||
gui = ["gooey>=1.0"] | ||
plot = ["plotly>=5"] | ||
deepcallc = ["scikit-learn<2,>=0.24.0"] | ||
|
||
[project.scripts] | ||
deeplc = "deeplc.__main__:main" | ||
deeplc-gui = "deeplc.gui:start_gui" | ||
|
||
[project.urls] | ||
GitHub = "https://github.com/compomics/deeplc" | ||
PyPi = "https://pypi.org/project/deeplc/" | ||
CompOmics = "https://www.compomics.com" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
packages = ["deeplc"] | ||
include-package-data = true |
Oops, something went wrong.