Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@ IM2Deep.code-workspace

# Testing
test_data/
test.ipynb
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ It is able to accurately predict CCS for modified peptides, even if the modifica
Install with pip:
`pip install im2deep`

If you want to use the multi-output model for CCS prediction of multiconformational peptide ions, use the following installation command:
`pip install 'im2deep[er]'`

## Usage
### Basic CLI usage:
```sh
im2deep <path/to/peptide_file.csv>
```
If you want to calibrate your predictions (HIGHLY recommended), please provide a calibration file:
```sh
im2deep <path/to/peptide_file.csv> --calibration_file <path/to/peptide_file_with_CCS.csv>
im2deep <path/to/peptide_file.csv> --calibration-file <path/to/peptide_file_with_CCS.csv>
```
For an overview of all CLI arguments, run `im2deep --help`.

Expand Down
2 changes: 1 addition & 1 deletion im2deep/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""IM2Deep: Deep learning framework for peptide collisional cross section prediction."""

__version__ = "0.3.1"
__version__ = "1.0.0"
Loading