Skip to content

Commit 73ecc1a

Browse files
authored
Merge pull request #8 from compomics/multiprediction
Addition of multiconformer prediction model and functionality
2 parents 23d9e98 + 171e111 commit 73ecc1a

File tree

12 files changed

+852
-511
lines changed

12 files changed

+852
-511
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,4 @@ IM2Deep.code-workspace
111111

112112
# Testing
113113
test_data/
114+
test.ipynb

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ It is able to accurately predict CCS for modified peptides, even if the modifica
1111
Install with pip:
1212
`pip install im2deep`
1313

14+
If you want to use the multi-output model for CCS prediction of multiconformational peptide ions, use the following installation command:
15+
`pip install 'im2deep[er]'`
16+
1417
## Usage
1518
### Basic CLI usage:
1619
```sh
1720
im2deep <path/to/peptide_file.csv>
1821
```
1922
If you want to calibrate your predictions (HIGHLY recommended), please provide a calibration file:
2023
```sh
21-
im2deep <path/to/peptide_file.csv> --calibration_file <path/to/peptide_file_with_CCS.csv>
24+
im2deep <path/to/peptide_file.csv> --calibration-file <path/to/peptide_file_with_CCS.csv>
2225
```
2326
For an overview of all CLI arguments, run `im2deep --help`.
2427

im2deep/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""IM2Deep: Deep learning framework for peptide collisional cross section prediction."""
22

3-
__version__ = "0.3.1"
3+
__version__ = "1.0.0"

0 commit comments

Comments
 (0)