-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from MannLabs/39-code-formatting-2
39 code formatting 2
- Loading branch information
Showing
46 changed files
with
2,862 additions
and
2,126 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,4 +51,4 @@ jobs: | |
cd tests | ||
python download_test_data.py | ||
. ./run_tests.sh | ||
conda deactivate | ||
conda deactivate |
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,23 +1,29 @@ | ||
#!python | ||
|
||
import warnings | ||
|
||
warnings.filterwarnings("ignore") | ||
|
||
|
||
def register_readers(): | ||
from .ms_data_base import ms_reader_provider | ||
from .legacy_msdata import mgf | ||
from .mzml import MzMLReader | ||
from .wrappers import alphapept_wrapper | ||
|
||
try: | ||
from .sciex import SciexWiffData | ||
from .thermo import ThermoRawData | ||
except (RuntimeError, ImportError): | ||
print("[WARN] pythonnet is not installed") | ||
|
||
|
||
__project__ = "alpharaw" | ||
__version__ = "0.4.5" | ||
__license__ = "Apache" | ||
__description__ = "An open-source Python package to unify raw MS data access and storage." | ||
__description__ = ( | ||
"An open-source Python package to unify raw MS data access and storage." | ||
) | ||
__author__ = "Mann Labs" | ||
__author_email__ = "[email protected]" | ||
__github__ = "https://github.com/MannLabs/alpharaw" | ||
|
@@ -28,7 +34,7 @@ def register_readers(): | |
"mass spectrometry", | ||
"raw data", | ||
"data access", | ||
"data storage" | ||
"data storage", | ||
] | ||
__python_version__ = ">=3.8" | ||
__classifiers__ = [ | ||
|
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
Oops, something went wrong.