-
Notifications
You must be signed in to change notification settings - Fork 73
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 #172 from bernt-matthias/topic/metaprosip
Add MetaproSIP
- Loading branch information
Showing
6 changed files
with
642 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 1.2 | ||
workflows: | ||
- name: main | ||
primaryDescriptorPath: /metaprosip.ga | ||
subclass: Galaxy | ||
testParameterFiles: | ||
- /metaprosip-tests.yml | ||
authors: | ||
- name: Matthias Bernt | ||
orcid: 0000-0003-3763-0797 |
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,5 @@ | ||
version: '0.1' | ||
registries: | ||
- url: https://workflowhub.eu | ||
project: iwc | ||
workflow: metaprosip/main |
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,4 @@ | ||
# Changelog | ||
|
||
## [0.1] 2023-04-13 | ||
First release. |
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,26 @@ | ||
# MetaProSIP: automated inference of elemental fluxes in microbial communities | ||
|
||
## Inputs dataset | ||
|
||
- `Centroided LC-MS datasets` in mzML (MetaProSIP is mainly tested on data generated by orbitrap instruments) | ||
- `Fasta Database` in Fasta (aminoacid sequences) | ||
|
||
## Inputs values | ||
|
||
- `Precursor monoisotopic mass tolerance` (ppm): This value is passed to | ||
- MSGFPlusAdapter parameter `Precursor monoisotopic mass tolerance` (-precursor_mass_tolerance) | ||
- MetaProSIP parameter `Tolerance in ppm` (-mz_tolerance_ppm) | ||
- Fixed modifications | ||
- Variable modifications | ||
- Labeled element | ||
|
||
## Processing | ||
|
||
- DecoyDatabase: Add decoy sequences to the Fasta database (for FDR calculation) | ||
- FeatureFinderCentroided: identify eluting peptides that correspond to isotopologues with natural isotopic distributions | ||
- MSGFPlusAdapter: identify peptides through peptide fragment fingerprinting (database search) | ||
- FeatureFinderMultiplex: detect elution profiles of unlabeled peptides | ||
- PeptideIndexer: annotate protein association to identified peptides | ||
- FalseDiscoveryRate: Calculate FDR | ||
- IDMapper: map identified spectra to elution profiles | ||
- MetaProSIP: calculate the protein-SIP features, to perform functional grouping, and for protein inference |
39 changes: 39 additions & 0 deletions
39
workflows/proteomics/openms-metaprosip/metaprosip-tests.yml
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,39 @@ | ||
- doc: Test outline for MetaProSIP | ||
job: | ||
Fasta Database: | ||
class: File | ||
location: https://abibuilder.cs.uni-tuebingen.de/archive/openms/galaxy-testdata/metaprosip/Zeitz_1and2_454AllContigs_HEX.fasta | ||
filetype: fasta | ||
Centroided LC-MS datasets: | ||
class: Collection | ||
collection_type: list | ||
elements: | ||
- class: File | ||
identifier: Zeitz_SIP_13-II_020_picked.mzML | ||
location: https://abibuilder.cs.uni-tuebingen.de/archive/openms/galaxy-testdata/metaprosip/Zeitz_SIP_13-II_020_picked.mzML | ||
filetype: mzml | ||
Precursor monoisotopic mass tolerance (ppm): 10.0 | ||
Fixed modifications: Carbamidomethyl (C) | ||
Variable modifications: Oxidation (M) | ||
Labeled element: C | ||
outputs: | ||
Peptide centric result: | ||
element_tests: | ||
Zeitz_SIP_13-II_020_picked.mzML: | ||
asserts: | ||
- that: has_n_lines | ||
n: 85 | ||
- that: has_text | ||
text: Peptide Sequence | ||
- that: has_text | ||
text: AATGTPSPAGSPPPIVPAPK | ||
Feature fitting result: | ||
element_tests: | ||
Zeitz_SIP_13-II_020_picked.mzML: | ||
asserts: | ||
- that: has_n_lines | ||
n: 4091 | ||
- that: has_text | ||
text: Group 1 | ||
- that: has_text | ||
text: LYSFHTLHQTYMK |
Oops, something went wrong.