-
Notifications
You must be signed in to change notification settings - Fork 2
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
18 changed files
with
3,256 additions
and
47,526 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Metadata-Version: 2.1 | ||
Name: MolNotator | ||
Version: 0.0.70 | ||
Version: 0.1.0 | ||
Summary: Predict the actual molecules in LC-MS/MS data through an interpretation of the ions detected via combinatorial triangulation. | ||
Home-page: https://github.com/ZzakB/MolNotator | ||
Author: Damien Olivier-Jimenez | ||
Author-email: [email protected] | ||
Author: Damien Olivier-Jimenez, Zakaria Bouchouireb | ||
Author-email: [email protected], [email protected] | ||
License: MIT | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 3 - Alpha | ||
Classifier: Development Status :: 4 - Beta | ||
Classifier: Environment :: Console | ||
Classifier: Intended Audience :: Science/Research | ||
Classifier: License :: OSI Approved :: MIT License | ||
|
@@ -107,14 +107,14 @@ Before installing MolNotator, make sure you have the following requirements inst | |
|
||
- pandas | ||
- NumPy | ||
- matchms >= 0.10.0 | ||
- matchms <= 0.6.2 | ||
- tqdm | ||
- PyYaml | ||
|
||
These dependencies can be installed using the following command : | ||
|
||
```bash | ||
pip install -U pandas numpy matchms tqdm pyyaml | ||
pip install -U pandas==1.3.5 numpy matchms==0.6.2 tqdm pyyaml | ||
``` | ||
### Via PyPI | ||
We deploy the MolNotator package to [PyPi](https://test.pypi.org/project/MolNotator). You can install MolNotator as a python module with: | ||
|
@@ -149,8 +149,13 @@ from MolNotator.Dereplicator import Dereplicator | |
from MolNotator.Cosiner import Cosiner | ||
from MolNotator.MolNet import MolNet | ||
|
||
wd = './examples/working_directory' # <---- change the path to your working directory | ||
wd = './working_directory' # <---- change the path to your working directory | ||
os.chdir(wd) | ||
|
||
for files in os.listdir(os.getcwd()): | ||
if files not in ['databases','mzmine_out','params']: | ||
raise Exception('Potential output files already exist! They need to be removed or moved outside the working directory.') | ||
|
||
with open("./params/params.yaml") as info: | ||
params = yaml.load(info, Loader=yaml.FullLoader) | ||
|
||
|
Large diffs are not rendered by default.
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
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
Oops, something went wrong.