msf 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +1 -0
- data/Gemfile +24 -0
- data/Gemfile.lock +67 -0
- data/LICENSE.txt +20 -0
- data/README.md +45 -0
- data/Rakefile +43 -0
- data/VERSION +1 -0
- data/bin/ibspectra +43 -0
- data/erd/config.png +0 -0
- data/erd/empty.png +0 -0
- data/erd/erd.png +0 -0
- data/erd/msf.xcdatamodeld/.xccurrentversion +8 -0
- data/erd/msf.xcdatamodeld/msf.xcdatamodel/contents +330 -0
- data/erd/schema.txt +666 -0
- data/lib/msf.rb +2 -0
- data/lib/msf/models.rb +4 -0
- data/lib/msf/models/amino_acid.rb +50 -0
- data/lib/msf/models/amino_acid_modification.rb +55 -0
- data/lib/msf/models/amino_acid_modification_neutral_loss.rb +31 -0
- data/lib/msf/models/amino_acid_modifications_amino_acid_nls.rb +23 -0
- data/lib/msf/models/amino_acid_modifications_amino_acids.rb +27 -0
- data/lib/msf/models/annotation_data_version.rb +20 -0
- data/lib/msf/models/annotation_dataset.rb +29 -0
- data/lib/msf/models/annotation_group.rb +38 -0
- data/lib/msf/models/annotation_type.rb +23 -0
- data/lib/msf/models/chromatogram.rb +26 -0
- data/lib/msf/models/custom_data_field.rb +56 -0
- data/lib/msf/models/custom_data_peptide.rb +25 -0
- data/lib/msf/models/custom_data_processing_node.rb +25 -0
- data/lib/msf/models/custom_data_protein.rb +25 -0
- data/lib/msf/models/custom_data_spectrum.rb +25 -0
- data/lib/msf/models/enzyme.rb +32 -0
- data/lib/msf/models/fasta_file.rb +50 -0
- data/lib/msf/models/file_info.rb +41 -0
- data/lib/msf/models/mass_peak.rb +36 -0
- data/lib/msf/models/peptide.rb +118 -0
- data/lib/msf/models/peptide_score.rb +34 -0
- data/lib/msf/models/peptide_score_decoy.rb +34 -0
- data/lib/msf/models/peptide_terminal_modification.rb +29 -0
- data/lib/msf/models/peptides_amino_acid_modifications.rb +32 -0
- data/lib/msf/models/peptides_proteins.rb +27 -0
- data/lib/msf/models/processing_node.rb +65 -0
- data/lib/msf/models/processing_node_score.rb +45 -0
- data/lib/msf/models/protein.rb +38 -0
- data/lib/msf/models/protein_annotation.rb +35 -0
- data/lib/msf/models/protein_identification_group.rb +19 -0
- data/lib/msf/models/protein_score.rb +34 -0
- data/lib/msf/models/reporter_ion_quan_result.rb +31 -0
- data/lib/msf/models/reporter_ion_quan_result_search_spectrum.rb +29 -0
- data/lib/msf/models/scan_event.rb +37 -0
- data/lib/msf/models/schema_info.rb +29 -0
- data/lib/msf/models/spectrum.rb +34 -0
- data/lib/msf/models/spectrum_header.rb +63 -0
- data/lib/msf/models/spectrum_score.rb +24 -0
- data/lib/msf/models/taxonomy_name.rb +26 -0
- data/lib/msf/models/workflow_info.rb +46 -0
- data/lib/msf/models/workflow_message.rb +31 -0
- data/lib/msf/msf.rb +32 -0
- data/lib/msf/sql/enzyme_cleavage_specificity.rb +16 -0
- data/lib/msf/sql/false_discovery_rate.rb +24 -0
- data/lib/msf/sql/fasta_file_protein_annotation.rb +17 -0
- data/lib/msf/sql/mass_peak_relation.rb +17 -0
- data/lib/msf/sql/peptide_amino_acid_modification_decoy.rb +23 -0
- data/lib/msf/sql/peptide_decoy.rb +32 -0
- data/lib/msf/sql/peptide_terminal_modification_decoy.rb +20 -0
- data/lib/msf/sql/precursor_ion_quan_result.rb +29 -0
- data/lib/msf/sql/precursor_ion_quan_result_event_spectrum.rb +17 -0
- data/lib/msf/sql/precursor_ion_quan_result_search_spectrum.rb +20 -0
- data/lib/msf/sql/processing_node_filter_parameter.rb +29 -0
- data/lib/msf/sql/processing_node_interface.rb +19 -0
- data/lib/msf/sql/processing_node_parameter.rb +46 -0
- data/lib/msf/sql/processing_node_spectrum.rb +16 -0
- data/lib/msf/sql/quan_result.rb +40 -0
- data/lib/msf/sql/result_filter_set.rb +12 -0
- data/lib/msf/sql/taxonomy_node.rb +26 -0
- data/msf.gemspec +143 -0
- data/spec/msf_spec.rb +7 -0
- data/spec/spec_helper.rb +14 -0
- metadata +275 -0
data/.document
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Gemfile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
5
|
+
|
6
|
+
# Add dependencies to develop your gem here.
|
7
|
+
# Include everything needed to run rake, tests, features, etc.
|
8
|
+
gem "bundler", "~> 1.2.1"
|
9
|
+
|
10
|
+
group :development, :test do
|
11
|
+
gem "rspec", "~> 2.8.0"
|
12
|
+
gem "simplecov", "~> 0.7.1", :require => false
|
13
|
+
end
|
14
|
+
|
15
|
+
group :development do
|
16
|
+
gem "jeweler", "~> 1.8.4"
|
17
|
+
gem "debugger", ">= 1.2.0"
|
18
|
+
gem "yard", "~> 0.7"
|
19
|
+
gem "redcarpet", "~> 2.2.2"
|
20
|
+
end
|
21
|
+
|
22
|
+
gem "activerecord", "~> 3.2.0"
|
23
|
+
gem "sqlite3", "~> 1.3.0"
|
24
|
+
# gem "composite_primary_keys", "~> 5.0.9"
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activemodel (3.2.8)
|
5
|
+
activesupport (= 3.2.8)
|
6
|
+
builder (~> 3.0.0)
|
7
|
+
activerecord (3.2.8)
|
8
|
+
activemodel (= 3.2.8)
|
9
|
+
activesupport (= 3.2.8)
|
10
|
+
arel (~> 3.0.2)
|
11
|
+
tzinfo (~> 0.3.29)
|
12
|
+
activesupport (3.2.8)
|
13
|
+
i18n (~> 0.6)
|
14
|
+
multi_json (~> 1.0)
|
15
|
+
arel (3.0.2)
|
16
|
+
builder (3.0.4)
|
17
|
+
columnize (0.3.6)
|
18
|
+
debugger (1.2.1)
|
19
|
+
columnize (>= 0.3.1)
|
20
|
+
debugger-linecache (~> 1.1.1)
|
21
|
+
debugger-ruby_core_source (~> 1.1.4)
|
22
|
+
debugger-linecache (1.1.2)
|
23
|
+
debugger-ruby_core_source (>= 1.1.1)
|
24
|
+
debugger-ruby_core_source (1.1.4)
|
25
|
+
diff-lcs (1.1.3)
|
26
|
+
git (1.2.5)
|
27
|
+
i18n (0.6.1)
|
28
|
+
jeweler (1.8.4)
|
29
|
+
bundler (~> 1.0)
|
30
|
+
git (>= 1.2.5)
|
31
|
+
rake
|
32
|
+
rdoc
|
33
|
+
json (1.7.5)
|
34
|
+
multi_json (1.3.6)
|
35
|
+
rake (0.9.2.2)
|
36
|
+
rdoc (3.12)
|
37
|
+
json (~> 1.4)
|
38
|
+
redcarpet (2.2.2)
|
39
|
+
rspec (2.8.0)
|
40
|
+
rspec-core (~> 2.8.0)
|
41
|
+
rspec-expectations (~> 2.8.0)
|
42
|
+
rspec-mocks (~> 2.8.0)
|
43
|
+
rspec-core (2.8.0)
|
44
|
+
rspec-expectations (2.8.0)
|
45
|
+
diff-lcs (~> 1.1.2)
|
46
|
+
rspec-mocks (2.8.0)
|
47
|
+
simplecov (0.7.1)
|
48
|
+
multi_json (~> 1.0)
|
49
|
+
simplecov-html (~> 0.7.1)
|
50
|
+
simplecov-html (0.7.1)
|
51
|
+
sqlite3 (1.3.6)
|
52
|
+
tzinfo (0.3.34)
|
53
|
+
yard (0.8.3)
|
54
|
+
|
55
|
+
PLATFORMS
|
56
|
+
ruby
|
57
|
+
|
58
|
+
DEPENDENCIES
|
59
|
+
activerecord (~> 3.2.0)
|
60
|
+
bundler (~> 1.2.1)
|
61
|
+
debugger (>= 1.2.0)
|
62
|
+
jeweler (~> 1.8.4)
|
63
|
+
redcarpet (~> 2.2.2)
|
64
|
+
rspec (~> 2.8.0)
|
65
|
+
simplecov (~> 0.7.1)
|
66
|
+
sqlite3 (~> 1.3.0)
|
67
|
+
yard (~> 0.7)
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2012 William Van Etten
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# MSF Parser #
|
2
|
+
|
3
|
+
A library for accessing Thermo’s ProteomeDiscoverer’s MSF result file format.
|
4
|
+
MSF files are SQLite3-based, so the this interface represents a simple API using ActiveRecord that is directly translatable to the database’s schema.
|
5
|
+
|
6
|
+
This gem takes heavily from Angel Pizzaro's thermo_msf gem.
|
7
|
+
|
8
|
+
https://github.com/itmat/thermo_msf
|
9
|
+
|
10
|
+
## WARNING ##
|
11
|
+
|
12
|
+
This gem has not been developed to completion,
|
13
|
+
taken only sufficiently far to serve my present needs.
|
14
|
+
|
15
|
+
It has not been tested on MSF files other than those generated by my instrument
|
16
|
+
operating my version of Thermo's Proteome Discoverer.
|
17
|
+
|
18
|
+
## Installation ##
|
19
|
+
|
20
|
+
gem install msf
|
21
|
+
|
22
|
+
## Usage ##
|
23
|
+
|
24
|
+
msf = MSF.new({:path => msf_file})
|
25
|
+
Peptides.all do |peptide|
|
26
|
+
<whatever>
|
27
|
+
end
|
28
|
+
|
29
|
+
ibspectra msf_file >> msf_file/msf_file.ibspectra.csv
|
30
|
+
|
31
|
+
## Contributing to msf ##
|
32
|
+
|
33
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
34
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
35
|
+
* Fork the project.
|
36
|
+
* Start a feature/bugfix branch.
|
37
|
+
* Commit and push until you are happy with your contribution.
|
38
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
39
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
40
|
+
|
41
|
+
## Copyright ##
|
42
|
+
|
43
|
+
Copyright (c) 2012 William Van Etten. See LICENSE.txt for
|
44
|
+
further details.
|
45
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
|
14
|
+
require 'jeweler'
|
15
|
+
Jeweler::Tasks.new do |gem|
|
16
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
|
+
gem.name = "msf"
|
18
|
+
gem.homepage = "http://github.com/vanetten/msf"
|
19
|
+
gem.license = "MIT"
|
20
|
+
gem.summary = "ActiveRecord access to MSF file (sqlite3 database)."
|
21
|
+
gem.description = "An MSF file is sqlite3 dtabase. ActiveRecord is a great ORM for accessing the data. Much taken from Angel Pizarro's thermo_msf."
|
22
|
+
gem.email = "bill@bioteam.net"
|
23
|
+
gem.authors = ["William Van Etten"]
|
24
|
+
gem.files.include 'bin/ibspectra'
|
25
|
+
# dependencies defined in Gemfile
|
26
|
+
end
|
27
|
+
Jeweler::RubygemsDotOrgTasks.new
|
28
|
+
|
29
|
+
require 'rspec/core'
|
30
|
+
require 'rspec/core/rake_task'
|
31
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
32
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
33
|
+
end
|
34
|
+
|
35
|
+
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
36
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
37
|
+
spec.rcov = true
|
38
|
+
end
|
39
|
+
|
40
|
+
task :default => :spec
|
41
|
+
|
42
|
+
require 'yard'
|
43
|
+
YARD::Rake::YardocTask.new
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/bin/ibspectra
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
require 'msf'
|
4
|
+
|
5
|
+
msf_file = ARGV.shift
|
6
|
+
|
7
|
+
if msf_file.nil? || !File.readable?(msf_file)
|
8
|
+
puts "Usage: #{File.basename($0)} file.msf\n\n"
|
9
|
+
exit 0
|
10
|
+
end
|
11
|
+
|
12
|
+
msf = MSF.new({:path => msf_file})
|
13
|
+
header = %w{"accession" "start.pos" "peptide" "modif" "charge" "theo.mass" "exp.mass" "parent.intens" "retention.time" "spectrum" "score.mascot" "score.phenyx" "use.for.quant" "file" "X113_mass" "X114_mass" "X115_mass" "X116_mass" "X117_mass" "X118_mass" "X119_mass" "X121_mass" "X113_ions" "X114_ions" "X115_ions" "X116_ions" "X117_ions" "X118_ions" "X119_ions" "X121_ions"}
|
14
|
+
puts header.join("\t") + "\n"
|
15
|
+
Peptide.all.each do |peptide|
|
16
|
+
next unless peptide.confidence_level == 3
|
17
|
+
next if peptide.terminal_modification.nil?
|
18
|
+
next unless peptide.spectrum.search_spectrum
|
19
|
+
peptide.proteins.each do |protein|
|
20
|
+
row = []
|
21
|
+
row << '"' + protein.protein_annotation.accession + '"'
|
22
|
+
row << protein.sequence.index(peptide.sequence) + 1
|
23
|
+
row << '"' + peptide.sequence + '"'
|
24
|
+
row << '"' + peptide.isobar_sequence + '"'
|
25
|
+
row << peptide.spectrum.spectrum_header.charge
|
26
|
+
row << peptide.theoretical_mass
|
27
|
+
row << peptide.spectrum.spectrum_header.mass_peak.mass
|
28
|
+
row << peptide.spectrum.spectrum_header.mass_peak.intensity
|
29
|
+
row << peptide.spectrum.spectrum_header.retention_time
|
30
|
+
row << '"' + peptide.spectrum.spectrum_header.title + '"'
|
31
|
+
row << peptide.peptide_score.score_value
|
32
|
+
row << 0
|
33
|
+
row << 'TRUE'
|
34
|
+
row << '"' + File.basename(msf_file) + '"'
|
35
|
+
peptide.spectrum.search_spectrum.reporter_ion_quan_results.each do |result|
|
36
|
+
row << result.mass
|
37
|
+
end
|
38
|
+
peptide.spectrum.search_spectrum.reporter_ion_quan_results.each do |result|
|
39
|
+
row << result.height
|
40
|
+
end
|
41
|
+
puts row.join("\t") + "\n"
|
42
|
+
end
|
43
|
+
end
|
data/erd/config.png
ADDED
Binary file
|
data/erd/empty.png
ADDED
Binary file
|
data/erd/erd.png
ADDED
Binary file
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>_XCCurrentVersionName</key>
|
6
|
+
<string>msf.xcdatamodel</string>
|
7
|
+
</dict>
|
8
|
+
</plist>
|
@@ -0,0 +1,330 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<model name="" userDefinedModelVersionIdentifier="" type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="1487" systemVersion="12C54" minimumToolsVersion="Automatic" macOSVersion="Automatic" iOSVersion="Automatic">
|
3
|
+
<entity name="AminoAcid" syncable="YES">
|
4
|
+
<attribute name="aminoAcidID" optional="YES" syncable="YES"/>
|
5
|
+
<attribute name="aminoAcidName" optional="YES" syncable="YES"/>
|
6
|
+
<attribute name="averageMass" optional="YES" syncable="YES"/>
|
7
|
+
<attribute name="monoisotopicMass" optional="YES" syncable="YES"/>
|
8
|
+
<attribute name="oneLetterCode" optional="YES" syncable="YES"/>
|
9
|
+
<attribute name="sumFormula" optional="YES" syncable="YES"/>
|
10
|
+
<attribute name="threeLetterCode" optional="YES" syncable="YES"/>
|
11
|
+
<relationship name="aminoAcidModifications" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="AminoAcidsModificationsAminoAcids" inverseName="aminoAcid" inverseEntity="AminoAcidsModificationsAminoAcids" syncable="YES"/>
|
12
|
+
</entity>
|
13
|
+
<entity name="AminoAcidModification" syncable="YES">
|
14
|
+
<attribute name="abbreviation" optional="YES" syncable="YES"/>
|
15
|
+
<attribute name="aminoAcidModificationID" optional="YES" syncable="YES"/>
|
16
|
+
<attribute name="deltaAverageMass" optional="YES" syncable="YES"/>
|
17
|
+
<attribute name="deltaMass" optional="YES" syncable="YES"/>
|
18
|
+
<attribute name="isActive" optional="YES" syncable="YES"/>
|
19
|
+
<attribute name="isSubstitution" optional="YES" syncable="YES"/>
|
20
|
+
<attribute name="leavingGroup" optional="YES" syncable="YES"/>
|
21
|
+
<attribute name="modificationName" optional="YES" syncable="YES"/>
|
22
|
+
<attribute name="positionType" optional="YES" syncable="YES"/>
|
23
|
+
<attribute name="substitution" optional="YES" syncable="YES"/>
|
24
|
+
<attribute name="unimodAccession" optional="YES" syncable="YES"/>
|
25
|
+
<relationship name="aminoAcid" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcidsModificationsAminoAcids" inverseName="aminoAcidModification" inverseEntity="AminoAcidsModificationsAminoAcids" syncable="YES"/>
|
26
|
+
<relationship name="internalPeptides" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="PeptidesAminoAcidModifications" inverseName="internalModification" inverseEntity="PeptidesAminoAcidModifications" syncable="YES"/>
|
27
|
+
<relationship name="neutralLoss" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcidModificationsAminoAcidsNL" inverseName="aminoAcidModification" inverseEntity="AminoAcidModificationsAminoAcidsNL" syncable="YES"/>
|
28
|
+
<relationship name="terminalPeptides" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="PeptideTerminalModifications" inverseName="terminalModification" inverseEntity="PeptideTerminalModifications" syncable="YES"/>
|
29
|
+
</entity>
|
30
|
+
<entity name="AminoAcidModificationsAminoAcidsNL" syncable="YES">
|
31
|
+
<attribute name="aminoAcidID" optional="YES" syncable="YES"/>
|
32
|
+
<attribute name="aminoAcidModificationID" optional="YES" syncable="YES"/>
|
33
|
+
<attribute name="neutralLossID" optional="YES" syncable="YES"/>
|
34
|
+
<relationship name="aminoAcidModification" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcidModification" inverseName="neutralLoss" inverseEntity="AminoAcidModification" syncable="YES"/>
|
35
|
+
<relationship name="neutralLoss" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcidModificationsNeutralLoss" inverseName="aminoAcidModifications" inverseEntity="AminoAcidModificationsNeutralLoss" syncable="YES"/>
|
36
|
+
</entity>
|
37
|
+
<entity name="AminoAcidModificationsNeutralLoss" syncable="YES">
|
38
|
+
<attribute name="averageMass" optional="YES" syncable="YES"/>
|
39
|
+
<attribute name="monoisotopicMass" optional="YES" syncable="YES"/>
|
40
|
+
<attribute name="name" optional="YES" syncable="YES"/>
|
41
|
+
<attribute name="neutralLossID" optional="YES" syncable="YES"/>
|
42
|
+
<relationship name="aminoAcidModifications" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="AminoAcidModificationsAminoAcidsNL" inverseName="neutralLoss" inverseEntity="AminoAcidModificationsAminoAcidsNL" syncable="YES"/>
|
43
|
+
</entity>
|
44
|
+
<entity name="AminoAcidsModificationsAminoAcids" syncable="YES">
|
45
|
+
<attribute name="aminoAcidID" optional="YES" syncable="YES"/>
|
46
|
+
<attribute name="aminoAcidModificationID" optional="YES" syncable="YES"/>
|
47
|
+
<attribute name="classification" optional="YES" syncable="YES"/>
|
48
|
+
<relationship name="aminoAcid" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcid" inverseName="aminoAcidModifications" inverseEntity="AminoAcid" syncable="YES"/>
|
49
|
+
<relationship name="aminoAcidModification" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcidModification" inverseName="aminoAcid" inverseEntity="AminoAcidModification" syncable="YES"/>
|
50
|
+
</entity>
|
51
|
+
<entity name="AnnotationDataset" syncable="YES"/>
|
52
|
+
<entity name="AnnotationDataVersion" syncable="YES"/>
|
53
|
+
<entity name="AnnotationGroups" syncable="YES"/>
|
54
|
+
<entity name="Annotations" syncable="YES"/>
|
55
|
+
<entity name="AnnotationsAnnotationGroups" syncable="YES"/>
|
56
|
+
<entity name="AnnotationsProteins" syncable="YES"/>
|
57
|
+
<entity name="AnnotationTypes" syncable="YES"/>
|
58
|
+
<entity name="Chromatograms" syncable="YES">
|
59
|
+
<attribute name="chromatogram" optional="YES" syncable="YES"/>
|
60
|
+
<attribute name="fileID" optional="YES" syncable="YES"/>
|
61
|
+
<attribute name="traceType" optional="YES" syncable="YES"/>
|
62
|
+
<relationship name="fileInfo" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="FileInfo" inverseName="chromatograms" inverseEntity="FileInfo" syncable="YES"/>
|
63
|
+
</entity>
|
64
|
+
<entity name="CustomDataFields" syncable="YES"/>
|
65
|
+
<entity name="CustomDataPeptides" syncable="YES"/>
|
66
|
+
<entity name="CustomDataProcessinNodes" syncable="YES"/>
|
67
|
+
<entity name="CustomDataProteins" syncable="YES"/>
|
68
|
+
<entity name="CustomDataSpectra" syncable="YES"/>
|
69
|
+
<entity name="Enzymes" syncable="YES"/>
|
70
|
+
<entity name="EnzymesCleavageSpecificities" syncable="YES"/>
|
71
|
+
<entity name="EventAnnotations" syncable="YES"/>
|
72
|
+
<entity name="EventAreaAnnotations" syncable="YES"/>
|
73
|
+
<entity name="Events" syncable="YES"/>
|
74
|
+
<entity name="FastaFiles" syncable="YES"/>
|
75
|
+
<entity name="FastaFilesProteinAnnotations" syncable="YES"/>
|
76
|
+
<entity name="FileInfo" syncable="YES">
|
77
|
+
<attribute name="fileID" optional="YES" syncable="YES"/>
|
78
|
+
<attribute name="fileName" optional="YES" syncable="YES"/>
|
79
|
+
<attribute name="fileSize" optional="YES" syncable="YES"/>
|
80
|
+
<attribute name="fileTime" optional="YES" syncable="YES"/>
|
81
|
+
<attribute name="fileType" optional="YES" syncable="YES"/>
|
82
|
+
<attribute name="physicalFileName" optional="YES" syncable="YES"/>
|
83
|
+
<relationship name="chromatograms" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="Chromatograms" inverseName="fileInfo" inverseEntity="Chromatograms" syncable="YES"/>
|
84
|
+
<relationship name="massPeaks" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="MassPeak" inverseName="fileInfo" inverseEntity="MassPeak" syncable="YES"/>
|
85
|
+
</entity>
|
86
|
+
<entity name="MassPeak" syncable="YES">
|
87
|
+
<attribute name="charge" optional="YES" syncable="YES"/>
|
88
|
+
<attribute name="fileID" optional="YES" syncable="YES"/>
|
89
|
+
<attribute name="intensity" optional="YES" syncable="YES"/>
|
90
|
+
<attribute name="ionInjectTime" optional="YES" syncable="YES"/>
|
91
|
+
<attribute name="mass" optional="YES" syncable="YES"/>
|
92
|
+
<attribute name="massPeakID" optional="YES" syncable="YES"/>
|
93
|
+
<attribute name="percentIsolationInterference" optional="YES" syncable="YES"/>
|
94
|
+
<attribute name="scanNumbers" optional="YES" syncable="YES"/>
|
95
|
+
<relationship name="fileInfo" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="FileInfo" inverseName="massPeaks" inverseEntity="FileInfo" syncable="YES"/>
|
96
|
+
<relationship name="spectrumHeader" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="SpectrumHeader" inverseName="massPeak" inverseEntity="SpectrumHeader" syncable="YES"/>
|
97
|
+
</entity>
|
98
|
+
<entity name="MassPeakRelations" syncable="YES"/>
|
99
|
+
<entity name="Peptide">
|
100
|
+
<attribute name="annotation" optional="YES" syncable="YES"/>
|
101
|
+
<attribute name="confidenceLevel" optional="YES" syncable="YES"/>
|
102
|
+
<attribute name="hidden" optional="YES" syncable="YES"/>
|
103
|
+
<attribute name="matchedIonsCount" optional="YES" syncable="YES"/>
|
104
|
+
<attribute name="missedCleavages" optional="YES" syncable="YES"/>
|
105
|
+
<attribute name="peptideID" optional="YES" attributeType="Date">
|
106
|
+
<userInfo/>
|
107
|
+
</attribute>
|
108
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
109
|
+
<attribute name="searchEngneRank" optional="YES" syncable="YES"/>
|
110
|
+
<attribute name="sequence" optional="YES" syncable="YES"/>
|
111
|
+
<attribute name="spectrumID" optional="YES" syncable="YES"/>
|
112
|
+
<attribute name="totalIonsCount" optional="YES" syncable="YES"/>
|
113
|
+
<attribute name="uniquePeptideSeqeunceID" optional="YES" syncable="YES"/>
|
114
|
+
<relationship name="internalModifications" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="PeptidesAminoAcidModifications" inverseName="peptide" inverseEntity="PeptidesAminoAcidModifications" syncable="YES"/>
|
115
|
+
<relationship name="peptideScore" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="PeptideScores" inverseName="peptide" inverseEntity="PeptideScores" syncable="YES"/>
|
116
|
+
<relationship name="proteins" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="PeptidesProteins" inverseName="peptide" inverseEntity="PeptidesProteins" syncable="YES"/>
|
117
|
+
<relationship name="spectrum" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Spectrum" inverseName="peptides" inverseEntity="Spectrum" syncable="YES"/>
|
118
|
+
<relationship name="terminalModification" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="PeptideTerminalModifications" inverseName="peptide" inverseEntity="PeptideTerminalModifications" syncable="YES"/>
|
119
|
+
<userInfo/>
|
120
|
+
</entity>
|
121
|
+
<entity name="PeptideDecoy" syncable="YES"/>
|
122
|
+
<entity name="PeptidesAminoAcidModifications" syncable="YES">
|
123
|
+
<attribute name="aminoAcidModificationID" optional="YES" syncable="YES"/>
|
124
|
+
<attribute name="peptideID" optional="YES" syncable="YES"/>
|
125
|
+
<attribute name="position" optional="YES" syncable="YES"/>
|
126
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
127
|
+
<relationship name="internalModification" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcidModification" inverseName="internalPeptides" inverseEntity="AminoAcidModification" syncable="YES"/>
|
128
|
+
<relationship name="peptide" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Peptide" inverseName="internalModifications" inverseEntity="Peptide" syncable="YES"/>
|
129
|
+
</entity>
|
130
|
+
<entity name="PeptidesAminoAcidModificationsDecoy" syncable="YES"/>
|
131
|
+
<entity name="PeptideScoreDecoy" syncable="YES"/>
|
132
|
+
<entity name="PeptideScores" syncable="YES">
|
133
|
+
<attribute name="peptideID" optional="YES" syncable="YES"/>
|
134
|
+
<attribute name="processingNodeID" optional="YES" syncable="YES"/>
|
135
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
136
|
+
<attribute name="scoreID" optional="YES" syncable="YES"/>
|
137
|
+
<attribute name="scoreValue" optional="YES" syncable="YES"/>
|
138
|
+
<relationship name="peptide" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Peptide" inverseName="peptideScore" inverseEntity="Peptide" syncable="YES"/>
|
139
|
+
</entity>
|
140
|
+
<entity name="PeptidesProteins" syncable="YES">
|
141
|
+
<attribute name="peptideID" optional="YES" syncable="YES"/>
|
142
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
143
|
+
<attribute name="proteinID" optional="YES" syncable="YES"/>
|
144
|
+
<relationship name="peptide" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Peptide" inverseName="proteins" inverseEntity="Peptide" syncable="YES"/>
|
145
|
+
<relationship name="protein" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Protein" inverseName="peptides" inverseEntity="Protein" syncable="YES"/>
|
146
|
+
</entity>
|
147
|
+
<entity name="PeptidesProteinsDecoy" syncable="YES"/>
|
148
|
+
<entity name="PeptideTerminalModifications" syncable="YES">
|
149
|
+
<attribute name="peptideID" optional="YES" syncable="YES"/>
|
150
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
151
|
+
<attribute name="terminalModificationID" optional="YES" syncable="YES"/>
|
152
|
+
<relationship name="peptide" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Peptide" inverseName="terminalModification" inverseEntity="Peptide" syncable="YES"/>
|
153
|
+
<relationship name="terminalModification" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="AminoAcidModification" inverseName="terminalPeptides" inverseEntity="AminoAcidModification" syncable="YES"/>
|
154
|
+
</entity>
|
155
|
+
<entity name="PeptideTerminalModificationsDecoy" syncable="YES"/>
|
156
|
+
<entity name="PrecursorIonAreaSearchSpectra" syncable="YES"/>
|
157
|
+
<entity name="PrecursorIonQuanResults" syncable="YES"/>
|
158
|
+
<entity name="PrecursorIonQuanResultsSearchSpectra" syncable="YES"/>
|
159
|
+
<entity name="ProcessingNodeConnectionPoints" syncable="YES"/>
|
160
|
+
<entity name="ProcessingNodeExtensions" syncable="YES"/>
|
161
|
+
<entity name="ProcessingNodeFilterParameters" syncable="YES"/>
|
162
|
+
<entity name="ProcessingNodeInterfaces" syncable="YES"/>
|
163
|
+
<entity name="ProcessingNodeParameters" syncable="YES"/>
|
164
|
+
<entity name="ProcessingNodes" syncable="YES"/>
|
165
|
+
<entity name="ProcessingNodeScores" syncable="YES"/>
|
166
|
+
<entity name="ProcessingNodesSpectra" syncable="YES"/>
|
167
|
+
<entity name="Protein" syncable="YES">
|
168
|
+
<attribute name="isMasterProtein" optional="YES" syncable="YES"/>
|
169
|
+
<attribute name="proteinID" optional="YES" syncable="YES"/>
|
170
|
+
<attribute name="seqeunceHashCode" optional="YES" syncable="YES"/>
|
171
|
+
<attribute name="sequence" optional="YES" syncable="YES"/>
|
172
|
+
<relationship name="peptides" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="PeptidesProteins" inverseName="protein" inverseEntity="PeptidesProteins" syncable="YES"/>
|
173
|
+
<relationship name="proteinAnnotation" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="ProteinAnnotations" inverseName="protein" inverseEntity="ProteinAnnotations" syncable="YES"/>
|
174
|
+
<relationship name="proteinScore" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="ProteinScores" inverseName="protein" inverseEntity="ProteinScores" syncable="YES"/>
|
175
|
+
</entity>
|
176
|
+
<entity name="ProteinAnnotations" syncable="YES">
|
177
|
+
<attribute name="decription" optional="YES" syncable="YES"/>
|
178
|
+
<attribute name="descriptionHash" optional="YES" syncable="YES"/>
|
179
|
+
<attribute name="proteinAnnotationID" optional="YES" syncable="YES"/>
|
180
|
+
<attribute name="proteinID" optional="YES" syncable="YES"/>
|
181
|
+
<attribute name="taxonomyID" optional="YES" syncable="YES"/>
|
182
|
+
<relationship name="protein" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Protein" inverseName="proteinAnnotation" inverseEntity="Protein" syncable="YES"/>
|
183
|
+
</entity>
|
184
|
+
<entity name="ProteinIdentificationGroups" syncable="YES"/>
|
185
|
+
<entity name="ProteinScores" syncable="YES">
|
186
|
+
<attribute name="coverage" optional="YES" syncable="YES"/>
|
187
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
188
|
+
<attribute name="proteinID" optional="YES" syncable="YES"/>
|
189
|
+
<attribute name="proteinIdentificationGroupID" optional="YES" syncable="YES"/>
|
190
|
+
<attribute name="proteinScore" optional="YES" syncable="YES"/>
|
191
|
+
<relationship name="protein" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Protein" inverseName="proteinScore" inverseEntity="Protein" syncable="YES"/>
|
192
|
+
</entity>
|
193
|
+
<entity name="ProteinScoresDecoy" syncable="YES"/>
|
194
|
+
<entity name="ProteinsProteinGroups" syncable="YES">
|
195
|
+
<attribute name="proteinGroupID" optional="YES" syncable="YES"/>
|
196
|
+
<attribute name="proteinID" optional="YES" syncable="YES"/>
|
197
|
+
</entity>
|
198
|
+
<entity name="PtmAnnotationData" syncable="YES"/>
|
199
|
+
<entity name="ReporterIonQuanResults" syncable="YES">
|
200
|
+
<attribute name="height" optional="YES" syncable="YES"/>
|
201
|
+
<attribute name="mass" optional="YES" syncable="YES"/>
|
202
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
203
|
+
<attribute name="quanChannelID" optional="YES" syncable="YES"/>
|
204
|
+
<attribute name="spectrumID" optional="YES" syncable="YES"/>
|
205
|
+
<relationship name="searchSpectrum" optional="YES" maxCount="1" deletionRule="Nullify" destinationEntity="ReporterIonQuanResultsSearchSpectra" inverseName="reporterIonQuanResults" inverseEntity="ReporterIonQuanResultsSearchSpectra" syncable="YES"/>
|
206
|
+
</entity>
|
207
|
+
<entity name="ReporterIonQuanResultsSearchSpectra" syncable="YES">
|
208
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
209
|
+
<attribute name="searchSpectrumID" optional="YES" syncable="YES"/>
|
210
|
+
<attribute name="spectrumID" optional="YES" syncable="YES"/>
|
211
|
+
<relationship name="reporterIonQuanResults" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="ReporterIonQuanResults" inverseName="searchSpectrum" inverseEntity="ReporterIonQuanResults" syncable="YES"/>
|
212
|
+
<relationship name="spectrum" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Spectrum" inverseName="searchSpectrum" inverseEntity="Spectrum" syncable="YES"/>
|
213
|
+
</entity>
|
214
|
+
<entity name="ScanEvent" syncable="YES">
|
215
|
+
<attribute name="activationType" optional="YES" syncable="YES"/>
|
216
|
+
<attribute name="ionization" optional="YES" syncable="YES"/>
|
217
|
+
<attribute name="massAnalyzer" optional="YES" syncable="YES"/>
|
218
|
+
<attribute name="msLevel" optional="YES" syncable="YES"/>
|
219
|
+
<attribute name="polarity" optional="YES" syncable="YES"/>
|
220
|
+
<attribute name="scanEventID" optional="YES" syncable="YES"/>
|
221
|
+
<attribute name="scanType" optional="YES" syncable="YES"/>
|
222
|
+
<relationship name="spectrumHeaders" optional="YES" toMany="YES" deletionRule="Nullify" syncable="YES"/>
|
223
|
+
</entity>
|
224
|
+
<entity name="SchemaInfo" syncable="YES"/>
|
225
|
+
<entity name="Spectrum" syncable="YES">
|
226
|
+
<attribute name="spectrum" optional="YES" syncable="YES"/>
|
227
|
+
<attribute name="spectrumHashCode" optional="YES" syncable="YES"/>
|
228
|
+
<attribute name="uniqueSpectrumID" optional="YES" syncable="YES"/>
|
229
|
+
<relationship name="peptides" optional="YES" toMany="YES" deletionRule="Nullify" destinationEntity="Peptide" inverseName="spectrum" inverseEntity="Peptide" syncable="YES"/>
|
230
|
+
<relationship name="searchSpectrum" optional="YES" maxCount="1" deletionRule="Nullify" destinationEntity="ReporterIonQuanResultsSearchSpectra" inverseName="spectrum" inverseEntity="ReporterIonQuanResultsSearchSpectra" syncable="YES"/>
|
231
|
+
<relationship name="spectrumHeader" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="SpectrumHeader" inverseName="spectrum" inverseEntity="SpectrumHeader" syncable="YES"/>
|
232
|
+
<relationship name="spectrumScore" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="SpectrumScores" inverseName="spectrum" inverseEntity="SpectrumScores" syncable="YES"/>
|
233
|
+
</entity>
|
234
|
+
<entity name="SpectrumHeader" syncable="YES">
|
235
|
+
<attribute name="charge" optional="YES" syncable="YES"/>
|
236
|
+
<attribute name="creatingProcessingNodeNumber" optional="YES" syncable="YES"/>
|
237
|
+
<attribute name="firstScan" optional="YES" syncable="YES"/>
|
238
|
+
<attribute name="hidden" optional="YES" syncable="YES"/>
|
239
|
+
<attribute name="lastScan" optional="YES" syncable="YES"/>
|
240
|
+
<attribute name="mass" optional="YES" syncable="YES"/>
|
241
|
+
<attribute name="massPeakID" optional="YES" syncable="YES"/>
|
242
|
+
<attribute name="retentionTime" optional="YES" syncable="YES"/>
|
243
|
+
<attribute name="scanEventID" optional="YES" syncable="YES"/>
|
244
|
+
<attribute name="scanNumbers" optional="YES" syncable="YES"/>
|
245
|
+
<attribute name="spectrumID" optional="YES" syncable="YES"/>
|
246
|
+
<attribute name="uniqueSpectrumID" optional="YES" syncable="YES"/>
|
247
|
+
<relationship name="massPeak" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="MassPeak" inverseName="spectrumHeader" inverseEntity="MassPeak" syncable="YES"/>
|
248
|
+
<relationship name="spectrum" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Spectrum" inverseName="spectrumHeader" inverseEntity="Spectrum" syncable="YES"/>
|
249
|
+
<relationship name="uniqueSpectrum" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="SpectrumHeader" syncable="YES"/>
|
250
|
+
</entity>
|
251
|
+
<entity name="SpectrumScores" syncable="YES">
|
252
|
+
<attribute name="processingNodeNumber" optional="YES" syncable="YES"/>
|
253
|
+
<attribute name="score" optional="YES" syncable="YES"/>
|
254
|
+
<attribute name="spectrumID" optional="YES" syncable="YES"/>
|
255
|
+
<relationship name="spectrum" optional="YES" minCount="1" maxCount="1" deletionRule="Nullify" destinationEntity="Spectrum" inverseName="spectrumScore" inverseEntity="Spectrum" syncable="YES"/>
|
256
|
+
</entity>
|
257
|
+
<entity name="TaxonomyNames" syncable="YES"/>
|
258
|
+
<entity name="TaxonomyNodes" syncable="YES"/>
|
259
|
+
<entity name="WorkflowInfo" syncable="YES"/>
|
260
|
+
<entity name="WorkflowMessages" syncable="YES"/>
|
261
|
+
<elements>
|
262
|
+
<element name="AminoAcid" positionX="-1647" positionY="-648" width="155" height="163"/>
|
263
|
+
<element name="AminoAcidModification" positionX="-2124" positionY="-655" width="144" height="268"/>
|
264
|
+
<element name="AminoAcidModificationsAminoAcidsNL" positionX="-1919" positionY="-504" width="227" height="118"/>
|
265
|
+
<element name="AminoAcidModificationsNeutralLoss" positionX="-1647" positionY="-450" width="234" height="118"/>
|
266
|
+
<element name="AminoAcidsModificationsAminoAcids" positionX="-1917" positionY="-631" width="218" height="118"/>
|
267
|
+
<element name="AnnotationDataset" positionX="-2430" positionY="497" width="128" height="43"/>
|
268
|
+
<element name="AnnotationDataVersion" positionX="-2430" positionY="450" width="128" height="43"/>
|
269
|
+
<element name="AnnotationGroups" positionX="-2430" positionY="587" width="128" height="43"/>
|
270
|
+
<element name="Annotations" positionX="-2430" positionY="360" width="128" height="43"/>
|
271
|
+
<element name="AnnotationsAnnotationGroups" positionX="-2430" positionY="630" width="173" height="43"/>
|
272
|
+
<element name="AnnotationsProteins" positionX="-2430" positionY="405" width="128" height="43"/>
|
273
|
+
<element name="AnnotationTypes" positionX="-2430" positionY="540" width="128" height="43"/>
|
274
|
+
<element name="Chromatograms" positionX="-1485" positionY="-238" width="128" height="103"/>
|
275
|
+
<element name="CustomDataFields" positionX="-1269" positionY="567" width="128" height="43"/>
|
276
|
+
<element name="CustomDataPeptides" positionX="-1269" positionY="659" width="128" height="43"/>
|
277
|
+
<element name="CustomDataProcessinNodes" positionX="-1449" positionY="495" width="171" height="43"/>
|
278
|
+
<element name="CustomDataProteins" positionX="-2160" positionY="540" width="128" height="43"/>
|
279
|
+
<element name="CustomDataSpectra" positionX="-1269" positionY="612" width="128" height="43"/>
|
280
|
+
<element name="Enzymes" positionX="-2025" positionY="360" width="128" height="43"/>
|
281
|
+
<element name="EnzymesCleavageSpecificities" positionX="-2025" positionY="405" width="171" height="43"/>
|
282
|
+
<element name="EventAnnotations" positionX="-2160" positionY="452" width="128" height="43"/>
|
283
|
+
<element name="EventAreaAnnotations" positionX="-2160" positionY="360" width="128" height="43"/>
|
284
|
+
<element name="Events" positionX="-2160" positionY="405" width="128" height="43"/>
|
285
|
+
<element name="FastaFiles" positionX="-1406" positionY="540" width="128" height="43"/>
|
286
|
+
<element name="FastaFilesProteinAnnotations" positionX="-1458" positionY="450" width="180" height="43"/>
|
287
|
+
<element name="FileInfo" positionX="-1458" positionY="-99" width="128" height="163"/>
|
288
|
+
<element name="MassPeak" positionX="-1431" positionY="99" width="128" height="193"/>
|
289
|
+
<element name="MassPeakRelations" positionX="-2295" positionY="542" width="128" height="43"/>
|
290
|
+
<element name="Peptide" positionX="-2124" positionY="-325" width="153" height="298"/>
|
291
|
+
<element name="PeptideDecoy" positionX="-2115" positionY="-378" width="128" height="43"/>
|
292
|
+
<element name="PeptidesAminoAcidModifications" positionX="-2439" positionY="-430" width="189" height="133"/>
|
293
|
+
<element name="PeptidesAminoAcidModificationsDecoy" positionX="-2439" positionY="-486" width="216" height="43"/>
|
294
|
+
<element name="PeptideScoreDecoy" positionX="-2367" positionY="-261" width="128" height="43"/>
|
295
|
+
<element name="PeptideScores" positionX="-2369" positionY="-205" width="128" height="133"/>
|
296
|
+
<element name="PeptidesProteins" positionX="-2108" positionY="36" width="128" height="118"/>
|
297
|
+
<element name="PeptidesProteinsDecoy" positionX="-2178" positionY="-16" width="128" height="43"/>
|
298
|
+
<element name="PeptideTerminalModifications" positionX="-1863" positionY="-306" width="171" height="118"/>
|
299
|
+
<element name="PeptideTerminalModificationsDecoy" positionX="-1890" positionY="-360" width="207" height="43"/>
|
300
|
+
<element name="PrecursorIonAreaSearchSpectra" positionX="-1899" positionY="542" width="198" height="43"/>
|
301
|
+
<element name="PrecursorIonQuanResults" positionX="-1890" positionY="360" width="189" height="43"/>
|
302
|
+
<element name="PrecursorIonQuanResultsSearchSpectra" positionX="-1953" positionY="495" width="252" height="43"/>
|
303
|
+
<element name="ProcessingNodeConnectionPoints" positionX="-1665" positionY="585" width="216" height="43"/>
|
304
|
+
<element name="ProcessingNodeExtensions" positionX="-1665" positionY="540" width="216" height="43"/>
|
305
|
+
<element name="ProcessingNodeFilterParameters" positionX="-1899" positionY="450" width="198" height="43"/>
|
306
|
+
<element name="ProcessingNodeInterfaces" positionX="-1667" positionY="497" width="164" height="43"/>
|
307
|
+
<element name="ProcessingNodeParameters" positionX="-1665" positionY="450" width="162" height="43"/>
|
308
|
+
<element name="ProcessingNodes" positionX="-1665" positionY="360" width="128" height="43"/>
|
309
|
+
<element name="ProcessingNodeScores" positionX="-1665" positionY="405" width="144" height="43"/>
|
310
|
+
<element name="ProcessingNodesSpectra" positionX="-1665" positionY="630" width="153" height="43"/>
|
311
|
+
<element name="Protein" positionX="-2115" positionY="189" width="128" height="148"/>
|
312
|
+
<element name="ProteinAnnotations" positionX="-2349" positionY="-54" width="128" height="133"/>
|
313
|
+
<element name="ProteinIdentificationGroups" positionX="-1449" positionY="405" width="171" height="43"/>
|
314
|
+
<element name="ProteinScores" positionX="-2412" positionY="162" width="171" height="133"/>
|
315
|
+
<element name="ProteinScoresDecoy" positionX="-2385" positionY="108" width="128" height="43"/>
|
316
|
+
<element name="ProteinsProteinGroups" positionX="-1404" positionY="585" width="128" height="73"/>
|
317
|
+
<element name="PtmAnnotationData" positionX="-1829" positionY="405" width="128" height="43"/>
|
318
|
+
<element name="ReporterIonQuanResults" positionX="-1890" positionY="-160" width="180" height="133"/>
|
319
|
+
<element name="ReporterIonQuanResultsSearchSpectra" positionX="-1890" positionY="9" width="234" height="118"/>
|
320
|
+
<element name="ScanEvent" positionX="-1269" positionY="360" width="128" height="163"/>
|
321
|
+
<element name="SchemaInfo" positionX="-1665" positionY="675" width="128" height="43"/>
|
322
|
+
<element name="Spectrum" positionX="-1863" positionY="176" width="128" height="148"/>
|
323
|
+
<element name="SpectrumHeader" positionX="-1629" positionY="-99" width="128" height="268"/>
|
324
|
+
<element name="SpectrumScores" positionX="-1622" positionY="216" width="128" height="103"/>
|
325
|
+
<element name="TaxonomyNames" positionX="-2295" positionY="360" width="128" height="43"/>
|
326
|
+
<element name="TaxonomyNodes" positionX="-2295" positionY="405" width="128" height="43"/>
|
327
|
+
<element name="WorkflowInfo" positionX="-1406" positionY="657" width="128" height="43"/>
|
328
|
+
<element name="WorkflowMessages" positionX="-1269" positionY="522" width="128" height="43"/>
|
329
|
+
</elements>
|
330
|
+
</model>
|