mspire 0.2.4 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/INSTALL +1 -0
- data/README +25 -0
- data/Rakefile +129 -40
- data/bin/{find_aa_freq.rb → aafreqs.rb} +2 -2
- data/bin/bioworks_to_pepxml.rb +1 -0
- data/bin/fasta_shaker.rb +1 -96
- data/bin/filter_and_validate.rb +5 -0
- data/bin/{mzxml_to_lmat.rb → ms_to_lmat.rb} +8 -7
- data/bin/prob_validate.rb +6 -0
- data/bin/raw_to_mzXML.rb +2 -2
- data/bin/srf_group.rb +1 -0
- data/bin/srf_to_sqt.rb +40 -0
- data/changelog.txt +68 -0
- data/lib/align/chams.rb +6 -6
- data/lib/align.rb +4 -3
- data/lib/bsearch.rb +120 -0
- data/lib/fasta.rb +318 -86
- data/lib/group_by.rb +10 -0
- data/lib/index_by.rb +11 -0
- data/lib/merge_deep.rb +21 -0
- data/lib/{spec → ms/converter}/mzxml.rb +77 -109
- data/lib/ms/gradient_program.rb +171 -0
- data/lib/ms/msrun.rb +209 -0
- data/lib/{spec/msrun.rb → ms/msrun_index.rb} +7 -40
- data/lib/ms/parser/mzdata/axml.rb +12 -0
- data/lib/ms/parser/mzdata/dom.rb +160 -0
- data/lib/ms/parser/mzdata/libxml.rb +7 -0
- data/lib/ms/parser/mzdata.rb +25 -0
- data/lib/ms/parser/mzxml/axml.rb +11 -0
- data/lib/ms/parser/mzxml/dom.rb +159 -0
- data/lib/ms/parser/mzxml/hpricot.rb +253 -0
- data/lib/ms/parser/mzxml/libxml.rb +15 -0
- data/lib/ms/parser/mzxml/regexp.rb +122 -0
- data/lib/ms/parser/mzxml/rexml.rb +72 -0
- data/lib/ms/parser/mzxml/xmlparser.rb +248 -0
- data/lib/ms/parser/mzxml.rb +175 -0
- data/lib/ms/parser.rb +108 -0
- data/lib/ms/precursor.rb +10 -0
- data/lib/ms/scan.rb +81 -0
- data/lib/ms/spectrum.rb +193 -0
- data/lib/ms.rb +10 -0
- data/lib/mspire.rb +4 -0
- data/lib/roc.rb +61 -1
- data/lib/sample_enzyme.rb +31 -8
- data/lib/scan_i.rb +21 -0
- data/lib/spec_id/aa_freqs.rb +7 -3
- data/lib/spec_id/bioworks.rb +20 -14
- data/lib/spec_id/digestor.rb +139 -0
- data/lib/spec_id/mass.rb +116 -0
- data/lib/spec_id/parser/proph.rb +236 -0
- data/lib/spec_id/precision/filter/cmdline.rb +209 -0
- data/lib/spec_id/precision/filter/interactive.rb +134 -0
- data/lib/spec_id/precision/filter/output.rb +147 -0
- data/lib/spec_id/precision/filter.rb +623 -0
- data/lib/spec_id/precision/output.rb +60 -0
- data/lib/spec_id/precision/prob/cmdline.rb +139 -0
- data/lib/spec_id/precision/prob/output.rb +88 -0
- data/lib/spec_id/precision/prob.rb +171 -0
- data/lib/spec_id/proph/pep_summary.rb +92 -0
- data/lib/spec_id/proph/prot_summary.rb +484 -0
- data/lib/spec_id/proph.rb +2 -466
- data/lib/spec_id/protein_summary.rb +2 -2
- data/lib/spec_id/sequest/params.rb +316 -0
- data/lib/spec_id/sequest/pepxml.rb +1513 -0
- data/lib/spec_id/sequest.rb +2 -1672
- data/lib/spec_id/srf.rb +445 -177
- data/lib/spec_id.rb +183 -95
- data/lib/spec_id_xml.rb +8 -10
- data/lib/transmem/phobius.rb +147 -0
- data/lib/transmem/toppred.rb +368 -0
- data/lib/transmem.rb +157 -0
- data/lib/validator/aa.rb +135 -0
- data/lib/validator/background.rb +73 -0
- data/lib/validator/bias.rb +95 -0
- data/lib/validator/cmdline.rb +260 -0
- data/lib/validator/decoy.rb +94 -0
- data/lib/validator/digestion_based.rb +69 -0
- data/lib/validator/probability.rb +48 -0
- data/lib/validator/prot_from_pep.rb +234 -0
- data/lib/validator/transmem.rb +272 -0
- data/lib/validator/true_pos.rb +46 -0
- data/lib/validator.rb +214 -0
- data/lib/xml.rb +38 -0
- data/lib/xml_style_parser.rb +105 -0
- data/lib/xmlparser_wrapper.rb +19 -0
- data/script/compile_and_plot_smriti_final.rb +97 -0
- data/script/extract_gradient_programs.rb +56 -0
- data/script/get_apex_values_rexml.rb +44 -0
- data/script/mzXML2timeIndex.rb +1 -1
- data/script/smriti_final_analysis.rb +103 -0
- data/script/toppred_to_yaml.rb +47 -0
- data/script/tpp_installer.rb +1 -1
- data/{test/tc_align.rb → specs/align_spec.rb} +21 -27
- data/{test/tc_bioworks_to_pepxml.rb → specs/bin/bioworks_to_pepxml_spec.rb} +25 -41
- data/specs/bin/fasta_shaker_spec.rb +259 -0
- data/specs/bin/filter_and_validate__multiple_vals_helper.yaml +202 -0
- data/specs/bin/filter_and_validate_spec.rb +124 -0
- data/specs/bin/ms_to_lmat_spec.rb +34 -0
- data/specs/bin/prob_validate_spec.rb +62 -0
- data/specs/bin/protein_summary_spec.rb +10 -0
- data/{test/tc_fasta.rb → specs/fasta_spec.rb} +354 -310
- data/specs/gi_spec.rb +22 -0
- data/specs/load_bin_path.rb +7 -0
- data/specs/merge_deep_spec.rb +13 -0
- data/specs/ms/gradient_program_spec.rb +77 -0
- data/specs/ms/msrun_spec.rb +455 -0
- data/specs/ms/parser_spec.rb +92 -0
- data/specs/ms/spectrum_spec.rb +89 -0
- data/specs/roc_spec.rb +251 -0
- data/specs/rspec_autotest.rb +149 -0
- data/specs/sample_enzyme_spec.rb +41 -0
- data/specs/spec_helper.rb +133 -0
- data/specs/spec_id/aa_freqs_spec.rb +52 -0
- data/{test/tc_bioworks.rb → specs/spec_id/bioworks_spec.rb} +56 -71
- data/specs/spec_id/digestor_spec.rb +75 -0
- data/specs/spec_id/precision/filter/cmdline_spec.rb +20 -0
- data/specs/spec_id/precision/filter/output_spec.rb +31 -0
- data/specs/spec_id/precision/filter_spec.rb +243 -0
- data/specs/spec_id/precision/prob_spec.rb +111 -0
- data/specs/spec_id/precision/prob_spec_helper.rb +0 -0
- data/specs/spec_id/proph/pep_summary_spec.rb +143 -0
- data/{test/tc_proph.rb → specs/spec_id/proph/prot_summary_spec.rb} +52 -32
- data/{test/tc_protein_summary.rb → specs/spec_id/protein_summary_spec.rb} +85 -0
- data/specs/spec_id/sequest/params_spec.rb +68 -0
- data/specs/spec_id/sequest/pepxml_spec.rb +452 -0
- data/specs/spec_id/sqt_spec.rb +138 -0
- data/specs/spec_id/srf_spec.rb +209 -0
- data/specs/spec_id/srf_spec_helper.rb +302 -0
- data/specs/spec_id_helper.rb +33 -0
- data/specs/spec_id_spec.rb +361 -0
- data/specs/spec_id_xml_spec.rb +33 -0
- data/specs/transmem/phobius_spec.rb +423 -0
- data/specs/transmem/toppred_spec.rb +297 -0
- data/specs/transmem_spec.rb +60 -0
- data/specs/transmem_spec_shared.rb +64 -0
- data/specs/validator/aa_spec.rb +107 -0
- data/specs/validator/background_spec.rb +51 -0
- data/specs/validator/bias_spec.rb +146 -0
- data/specs/validator/decoy_spec.rb +51 -0
- data/specs/validator/fasta_helper.rb +26 -0
- data/specs/validator/prot_from_pep_spec.rb +141 -0
- data/specs/validator/transmem_spec.rb +145 -0
- data/specs/validator/true_pos_spec.rb +58 -0
- data/specs/validator_helper.rb +33 -0
- data/specs/xml_spec.rb +12 -0
- data/test_files/000_pepxml18_small.xml +206 -0
- data/test_files/020a.mzXML.timeIndex +4710 -0
- data/test_files/4-03-03_mzXML/000.mzXML.timeIndex +3973 -0
- data/test_files/4-03-03_mzXML/020.mzXML.timeIndex +3872 -0
- data/test_files/4-03-03_small-prot.xml +321 -0
- data/test_files/4-03-03_small.xml +3876 -0
- data/test_files/7MIX_STD_110802_1.sequest_params_fragment.srf +0 -0
- data/test_files/bioworks-3.3_10prots.xml +5999 -0
- data/test_files/bioworks31.params +77 -0
- data/test_files/bioworks32.params +62 -0
- data/test_files/bioworks33.params +63 -0
- data/test_files/bioworks_single_run_small.xml +7237 -0
- data/test_files/bioworks_small.fasta +212 -0
- data/test_files/bioworks_small.params +63 -0
- data/test_files/bioworks_small.phobius +109 -0
- data/test_files/bioworks_small.toppred.out +2847 -0
- data/test_files/bioworks_small.xml +5610 -0
- data/test_files/bioworks_with_INV_small.xml +3753 -0
- data/test_files/bioworks_with_SHUFF_small.xml +2503 -0
- data/test_files/corrupted_900.srf +0 -0
- data/test_files/head_of_7MIX.srf +0 -0
- data/test_files/interact-opd1_mods_small-prot.xml +304 -0
- data/test_files/messups.fasta +297 -0
- data/test_files/opd1/000.my_answer.100lines.xml +101 -0
- data/test_files/opd1/000.tpp_1.2.3.first10.xml +115 -0
- data/test_files/opd1/000.tpp_2.9.2.first10.xml +126 -0
- data/test_files/opd1/000.v2.1.mzXML.timeIndex +3748 -0
- data/test_files/opd1/000_020-prot.png +0 -0
- data/test_files/opd1/000_020_3prots-prot.mod_initprob.xml +62 -0
- data/test_files/opd1/000_020_3prots-prot.xml +62 -0
- data/test_files/opd1/opd1_cat_inv_small-prot.xml +139 -0
- data/test_files/opd1/sequest.3.1.params +77 -0
- data/test_files/opd1/sequest.3.2.params +62 -0
- data/test_files/opd1/twenty_scans.mzXML +418 -0
- data/test_files/opd1/twenty_scans.v2.1.mzXML +382 -0
- data/test_files/opd1/twenty_scans_answ.lmat +0 -0
- data/test_files/opd1/twenty_scans_answ.lmata +9 -0
- data/test_files/opd1_020_beginning.RAW +0 -0
- data/test_files/opd1_2runs_2mods/interact-opd1_mods__small.xml +753 -0
- data/test_files/orbitrap_mzData/000_cut.xml +1920 -0
- data/test_files/pepproph_small.xml +4691 -0
- data/test_files/phobius.small.noheader.txt +50 -0
- data/test_files/phobius.small.small.txt +53 -0
- data/test_files/s01_anC1_ld020mM.key.txt +25 -0
- data/test_files/s01_anC1_ld020mM.meth +0 -0
- data/test_files/small.fasta +297 -0
- data/test_files/smallraw.RAW +0 -0
- data/test_files/tf_bioworks2excel.bioXML +14340 -0
- data/test_files/tf_bioworks2excel.txt.actual +1035 -0
- data/test_files/toppred.small.out +416 -0
- data/test_files/toppred.xml.out +318 -0
- data/test_files/validator_hits_separate/bias_bioworks_small_HS.fasta +7 -0
- data/test_files/validator_hits_separate/bioworks_small_HS.xml +5651 -0
- data/test_files/yeast_gly_small-prot.xml +265 -0
- data/test_files/yeast_gly_small.1.0_1.0_1.0.parentTimes +6 -0
- data/test_files/yeast_gly_small.xml +3807 -0
- data/test_files/yeast_gly_small2.parentTimes +6 -0
- metadata +273 -57
- data/bin/filter.rb +0 -6
- data/bin/precision.rb +0 -5
- data/lib/spec/mzdata/parser.rb +0 -108
- data/lib/spec/mzdata.rb +0 -48
- data/lib/spec/mzxml/parser.rb +0 -449
- data/lib/spec/scan.rb +0 -55
- data/lib/spec_id/filter.rb +0 -797
- data/lib/spec_id/precision.rb +0 -421
- data/lib/toppred.rb +0 -18
- data/script/filter-peps.rb +0 -164
- data/test/tc_aa_freqs.rb +0 -59
- data/test/tc_fasta_shaker.rb +0 -149
- data/test/tc_filter.rb +0 -203
- data/test/tc_filter_peps.rb +0 -46
- data/test/tc_gi.rb +0 -17
- data/test/tc_id_class_anal.rb +0 -70
- data/test/tc_id_precision.rb +0 -89
- data/test/tc_msrun.rb +0 -88
- data/test/tc_mzxml.rb +0 -88
- data/test/tc_mzxml_to_lmat.rb +0 -36
- data/test/tc_peptide_parent_times.rb +0 -27
- data/test/tc_precision.rb +0 -60
- data/test/tc_roc.rb +0 -166
- data/test/tc_sample_enzyme.rb +0 -32
- data/test/tc_scan.rb +0 -26
- data/test/tc_sequest.rb +0 -336
- data/test/tc_spec.rb +0 -78
- data/test/tc_spec_id.rb +0 -201
- data/test/tc_spec_id_xml.rb +0 -36
- data/test/tc_srf.rb +0 -262
|
@@ -0,0 +1,753 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<?xml-stylesheet type="text/xsl" href="/work/tpp-data/interact-opd1_mods.xsl"?>
|
|
3
|
+
<msms_pipeline_analysis date="2007-04-24T13:37:08" xmlns="http://regis-web.systemsbiology.net/pepXML" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://regis-web.systemsbiology.net/pepXML /tools/bin/TPP/tpp/schema/pepXML_v18.xsd" summary_xml="/work/tpp-data/interact-opd1_mods.xml">
|
|
4
|
+
<analysis_summary analysis="database_refresh" time="2007-04-24T13:37:10"/>
|
|
5
|
+
<analysis_summary analysis="peptideprophet" time="2007-04-24T13:37:09">
|
|
6
|
+
<peptideprophet_summary version="PeptideProphet v3.0 April 1, 2004 (TPP v2.9 GALE rev.2, Build 200703091101)" author="AKeller@ISB" min_prob="0.05" options=" " est_tot_num_correct="623.8">
|
|
7
|
+
<inputfile name="/work/john/mspire/test/tfiles_large/opd1_2runs_2mods/sequest/pepxml/020"/>
|
|
8
|
+
<inputfile name="/work/john/mspire/test/tfiles_large/opd1_2runs_2mods/sequest/pepxml/040"/>
|
|
9
|
+
<roc_data_point min_prob="0.99" sensitivity="0.1070" error="0.0016" num_corr="63" num_incorr="0"/>
|
|
10
|
+
<roc_data_point min_prob="0.98" sensitivity="0.1154" error="0.0025" num_corr="68" num_incorr="0"/>
|
|
11
|
+
<roc_data_point min_prob="0.95" sensitivity="0.1319" error="0.0064" num_corr="78" num_incorr="0"/>
|
|
12
|
+
<roc_data_point min_prob="0.90" sensitivity="0.1760" error="0.0244" num_corr="103" num_incorr="3"/>
|
|
13
|
+
<roc_data_point min_prob="0.85" sensitivity="0.2312" error="0.0500" num_corr="136" num_incorr="7"/>
|
|
14
|
+
<roc_data_point min_prob="0.80" sensitivity="0.2605" error="0.0666" num_corr="153" num_incorr="11"/>
|
|
15
|
+
<roc_data_point min_prob="0.75" sensitivity="0.2934" error="0.0876" num_corr="172" num_incorr="17"/>
|
|
16
|
+
<roc_data_point min_prob="0.70" sensitivity="0.3342" error="0.1153" num_corr="196" num_incorr="26"/>
|
|
17
|
+
<roc_data_point min_prob="0.65" sensitivity="0.3870" error="0.1515" num_corr="227" num_incorr="41"/>
|
|
18
|
+
<roc_data_point min_prob="0.60" sensitivity="0.4561" error="0.1950" num_corr="268" num_incorr="65"/>
|
|
19
|
+
<roc_data_point min_prob="0.55" sensitivity="0.5004" error="0.2220" num_corr="294" num_incorr="84"/>
|
|
20
|
+
<roc_data_point min_prob="0.50" sensitivity="0.5440" error="0.2513" num_corr="320" num_incorr="107"/>
|
|
21
|
+
<roc_data_point min_prob="0.45" sensitivity="0.5885" error="0.2825" num_corr="346" num_incorr="136"/>
|
|
22
|
+
<roc_data_point min_prob="0.40" sensitivity="0.6306" error="0.3150" num_corr="371" num_incorr="170"/>
|
|
23
|
+
<roc_data_point min_prob="0.35" sensitivity="0.6862" error="0.3578" num_corr="403" num_incorr="225"/>
|
|
24
|
+
<roc_data_point min_prob="0.30" sensitivity="0.7326" error="0.3953" num_corr="431" num_incorr="281"/>
|
|
25
|
+
<roc_data_point min_prob="0.25" sensitivity="0.7787" error="0.4350" num_corr="458" num_incorr="352"/>
|
|
26
|
+
<roc_data_point min_prob="0.20" sensitivity="0.8284" error="0.4821" num_corr="487" num_incorr="453"/>
|
|
27
|
+
<roc_data_point min_prob="0.15" sensitivity="0.8621" error="0.5188" num_corr="507" num_incorr="546"/>
|
|
28
|
+
<roc_data_point min_prob="0.10" sensitivity="0.9117" error="0.5837" num_corr="536" num_incorr="751"/>
|
|
29
|
+
<roc_data_point min_prob="0.05" sensitivity="0.9552" error="0.6583" num_corr="561" num_incorr="1082"/>
|
|
30
|
+
<roc_data_point min_prob="0.00" sensitivity="1.0000" error="0.8753" num_corr="588" num_incorr="4123"/>
|
|
31
|
+
<error_point error="0.000" min_prob="1.00" num_corr="42" num_incorr="0"/>
|
|
32
|
+
<error_point error="0.010" min_prob="0.94" num_corr="84" num_incorr="1"/>
|
|
33
|
+
<error_point error="0.020" min_prob="0.92" num_corr="99" num_incorr="2"/>
|
|
34
|
+
<error_point error="0.025" min_prob="0.90" num_corr="105" num_incorr="3"/>
|
|
35
|
+
<error_point error="0.030" min_prob="0.89" num_corr="111" num_incorr="4"/>
|
|
36
|
+
<error_point error="0.040" min_prob="0.87" num_corr="125" num_incorr="5"/>
|
|
37
|
+
<error_point error="0.050" min_prob="0.84" num_corr="138" num_incorr="7"/>
|
|
38
|
+
<error_point error="0.075" min_prob="0.78" num_corr="163" num_incorr="13"/>
|
|
39
|
+
<error_point error="0.100" min_prob="0.73" num_corr="184" num_incorr="21"/>
|
|
40
|
+
<distribution_point fvalue="-4.90" obs_1_distr="7" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="14" model_2_pos_distr="0.00" model_2_neg_distr="0.01" obs_3_distr="5" model_3_pos_distr="0.02" model_3_neg_distr="0.00"/>
|
|
41
|
+
<distribution_point fvalue="-4.70" obs_1_distr="9" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="22" model_2_pos_distr="0.00" model_2_neg_distr="0.34" obs_3_distr="5" model_3_pos_distr="0.02" model_3_neg_distr="0.00"/>
|
|
42
|
+
<distribution_point fvalue="-4.50" obs_1_distr="13" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="8" model_2_pos_distr="0.00" model_2_neg_distr="1.76" obs_3_distr="7" model_3_pos_distr="0.03" model_3_neg_distr="0.04"/>
|
|
43
|
+
<distribution_point fvalue="-4.30" obs_1_distr="10" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="23" model_2_pos_distr="0.00" model_2_neg_distr="4.92" obs_3_distr="8" model_3_pos_distr="0.04" model_3_neg_distr="0.23"/>
|
|
44
|
+
<distribution_point fvalue="-4.10" obs_1_distr="10" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="19" model_2_pos_distr="0.00" model_2_neg_distr="10.02" obs_3_distr="10" model_3_pos_distr="0.06" model_3_neg_distr="0.86"/>
|
|
45
|
+
<distribution_point fvalue="-3.90" obs_1_distr="28" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="15" model_2_pos_distr="0.01" model_2_neg_distr="16.82" obs_3_distr="6" model_3_pos_distr="0.08" model_3_neg_distr="2.28"/>
|
|
46
|
+
<distribution_point fvalue="-3.70" obs_1_distr="15" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="17" model_2_pos_distr="0.01" model_2_neg_distr="24.79" obs_3_distr="10" model_3_pos_distr="0.10" model_3_neg_distr="4.90"/>
|
|
47
|
+
<distribution_point fvalue="-3.50" obs_1_distr="25" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="29" model_2_pos_distr="0.02" model_2_neg_distr="33.30" obs_3_distr="16" model_3_pos_distr="0.14" model_3_neg_distr="8.99"/>
|
|
48
|
+
<distribution_point fvalue="-3.30" obs_1_distr="15" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="26" model_2_pos_distr="0.03" model_2_neg_distr="41.69" obs_3_distr="14" model_3_pos_distr="0.18" model_3_neg_distr="14.67"/>
|
|
49
|
+
<distribution_point fvalue="-3.10" obs_1_distr="28" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="46" model_2_pos_distr="0.05" model_2_neg_distr="49.42" obs_3_distr="20" model_3_pos_distr="0.24" model_3_neg_distr="21.82"/>
|
|
50
|
+
<distribution_point fvalue="-2.90" obs_1_distr="28" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="33" model_2_pos_distr="0.07" model_2_neg_distr="56.08" obs_3_distr="28" model_3_pos_distr="0.31" model_3_neg_distr="30.13"/>
|
|
51
|
+
<distribution_point fvalue="-2.70" obs_1_distr="44" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="45" model_2_pos_distr="0.11" model_2_neg_distr="61.40" obs_3_distr="36" model_3_pos_distr="0.40" model_3_neg_distr="39.15"/>
|
|
52
|
+
<distribution_point fvalue="-2.50" obs_1_distr="27" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="29" model_2_pos_distr="0.16" model_2_neg_distr="65.26" obs_3_distr="32" model_3_pos_distr="0.52" model_3_neg_distr="48.37"/>
|
|
53
|
+
<distribution_point fvalue="-2.30" obs_1_distr="38" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="44" model_2_pos_distr="0.23" model_2_neg_distr="67.63" obs_3_distr="27" model_3_pos_distr="0.66" model_3_neg_distr="57.25"/>
|
|
54
|
+
<distribution_point fvalue="-2.10" obs_1_distr="30" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="68" model_2_pos_distr="0.33" model_2_neg_distr="68.58" obs_3_distr="49" model_3_pos_distr="0.83" model_3_neg_distr="65.32"/>
|
|
55
|
+
<distribution_point fvalue="-1.90" obs_1_distr="30" model_1_pos_distr="0.00" model_1_neg_distr="8.10" obs_2_distr="62" model_2_pos_distr="0.46" model_2_neg_distr="68.26" obs_3_distr="58" model_3_pos_distr="1.03" model_3_neg_distr="72.17"/>
|
|
56
|
+
<distribution_point fvalue="-1.70" obs_1_distr="32" model_1_pos_distr="0.00" model_1_neg_distr="24.08" obs_2_distr="64" model_2_pos_distr="0.63" model_2_neg_distr="66.83" obs_3_distr="60" model_3_pos_distr="1.27" model_3_neg_distr="77.55"/>
|
|
57
|
+
<distribution_point fvalue="-1.50" obs_1_distr="27" model_1_pos_distr="0.00" model_1_neg_distr="34.82" obs_2_distr="60" model_2_pos_distr="0.86" model_2_neg_distr="64.49" obs_3_distr="68" model_3_pos_distr="1.56" model_3_neg_distr="81.30"/>
|
|
58
|
+
<distribution_point fvalue="-1.30" obs_1_distr="35" model_1_pos_distr="0.00" model_1_neg_distr="40.34" obs_2_distr="63" model_2_pos_distr="1.14" model_2_neg_distr="61.44" obs_3_distr="86" model_3_pos_distr="1.90" model_3_neg_distr="83.39"/>
|
|
59
|
+
<distribution_point fvalue="-1.10" obs_1_distr="26" model_1_pos_distr="0.00" model_1_neg_distr="41.95" obs_2_distr="69" model_2_pos_distr="1.49" model_2_neg_distr="57.86" obs_3_distr="76" model_3_pos_distr="2.29" model_3_neg_distr="83.86"/>
|
|
60
|
+
<distribution_point fvalue="-0.90" obs_1_distr="39" model_1_pos_distr="0.00" model_1_neg_distr="40.90" obs_2_distr="66" model_2_pos_distr="1.92" model_2_neg_distr="53.92" obs_3_distr="83" model_3_pos_distr="2.73" model_3_neg_distr="82.86"/>
|
|
61
|
+
<distribution_point fvalue="-0.70" obs_1_distr="25" model_1_pos_distr="0.00" model_1_neg_distr="38.21" obs_2_distr="58" model_2_pos_distr="2.42" model_2_neg_distr="49.79" obs_3_distr="96" model_3_pos_distr="3.24" model_3_neg_distr="80.58"/>
|
|
62
|
+
<distribution_point fvalue="-0.50" obs_1_distr="29" model_1_pos_distr="0.00" model_1_neg_distr="34.63" obs_2_distr="53" model_2_pos_distr="3.00" model_2_neg_distr="45.58" obs_3_distr="98" model_3_pos_distr="3.80" model_3_neg_distr="77.22"/>
|
|
63
|
+
<distribution_point fvalue="-0.30" obs_1_distr="24" model_1_pos_distr="0.00" model_1_neg_distr="30.68" obs_2_distr="58" model_2_pos_distr="3.66" model_2_neg_distr="41.41" obs_3_distr="79" model_3_pos_distr="4.42" model_3_neg_distr="73.03"/>
|
|
64
|
+
<distribution_point fvalue="-0.10" obs_1_distr="25" model_1_pos_distr="0.00" model_1_neg_distr="26.71" obs_2_distr="45" model_2_pos_distr="4.39" model_2_neg_distr="37.35" obs_3_distr="77" model_3_pos_distr="5.11" model_3_neg_distr="68.24"/>
|
|
65
|
+
<distribution_point fvalue="0.10" obs_1_distr="31" model_1_pos_distr="0.00" model_1_neg_distr="22.92" obs_2_distr="48" model_2_pos_distr="5.17" model_2_neg_distr="33.46" obs_3_distr="76" model_3_pos_distr="5.84" model_3_neg_distr="63.05"/>
|
|
66
|
+
<distribution_point fvalue="0.30" obs_1_distr="24" model_1_pos_distr="0.00" model_1_neg_distr="19.45" obs_2_distr="55" model_2_pos_distr="5.98" model_2_neg_distr="29.80" obs_3_distr="67" model_3_pos_distr="6.63" model_3_neg_distr="57.65"/>
|
|
67
|
+
<distribution_point fvalue="0.50" obs_1_distr="29" model_1_pos_distr="0.01" model_1_neg_distr="16.34" obs_2_distr="31" model_2_pos_distr="6.80" model_2_neg_distr="26.39" obs_3_distr="69" model_3_pos_distr="7.45" model_3_neg_distr="52.22"/>
|
|
68
|
+
<distribution_point fvalue="0.70" obs_1_distr="15" model_1_pos_distr="0.02" model_1_neg_distr="13.62" obs_2_distr="37" model_2_pos_distr="7.61" model_2_neg_distr="23.25" obs_3_distr="74" model_3_pos_distr="8.31" model_3_neg_distr="46.87"/>
|
|
69
|
+
<distribution_point fvalue="0.90" obs_1_distr="10" model_1_pos_distr="0.03" model_1_neg_distr="11.27" obs_2_distr="37" model_2_pos_distr="8.36" model_2_neg_distr="20.39" obs_3_distr="47" model_3_pos_distr="9.19" model_3_neg_distr="41.73"/>
|
|
70
|
+
<distribution_point fvalue="1.10" obs_1_distr="9" model_1_pos_distr="0.06" model_1_neg_distr="9.28" obs_2_distr="35" model_2_pos_distr="9.03" model_2_neg_distr="17.80" obs_3_distr="69" model_3_pos_distr="10.07" model_3_neg_distr="36.87"/>
|
|
71
|
+
<distribution_point fvalue="1.30" obs_1_distr="7" model_1_pos_distr="0.09" model_1_neg_distr="7.59" obs_2_distr="36" model_2_pos_distr="9.58" model_2_neg_distr="15.47" obs_3_distr="46" model_3_pos_distr="10.94" model_3_neg_distr="32.34"/>
|
|
72
|
+
<distribution_point fvalue="1.50" obs_1_distr="8" model_1_pos_distr="0.14" model_1_neg_distr="6.18" obs_2_distr="29" model_2_pos_distr="9.99" model_2_neg_distr="13.39" obs_3_distr="45" model_3_pos_distr="11.79" model_3_neg_distr="28.17"/>
|
|
73
|
+
<distribution_point fvalue="1.70" obs_1_distr="10" model_1_pos_distr="0.19" model_1_neg_distr="5.02" obs_2_distr="20" model_2_pos_distr="10.24" model_2_neg_distr="11.55" obs_3_distr="53" model_3_pos_distr="12.59" model_3_neg_distr="24.39"/>
|
|
74
|
+
<distribution_point fvalue="1.90" obs_1_distr="5" model_1_pos_distr="0.25" model_1_neg_distr="4.05" obs_2_distr="21" model_2_pos_distr="10.32" model_2_neg_distr="9.92" obs_3_distr="36" model_3_pos_distr="13.33" model_3_neg_distr="20.99"/>
|
|
75
|
+
<distribution_point fvalue="2.10" obs_1_distr="6" model_1_pos_distr="0.31" model_1_neg_distr="3.27" obs_2_distr="19" model_2_pos_distr="10.22" model_2_neg_distr="8.50" obs_3_distr="41" model_3_pos_distr="14.00" model_3_neg_distr="17.96"/>
|
|
76
|
+
<distribution_point fvalue="2.30" obs_1_distr="2" model_1_pos_distr="0.36" model_1_neg_distr="2.62" obs_2_distr="11" model_2_pos_distr="9.94" model_2_neg_distr="7.26" obs_3_distr="25" model_3_pos_distr="14.57" model_3_neg_distr="15.28"/>
|
|
77
|
+
<distribution_point fvalue="2.50" obs_1_distr="2" model_1_pos_distr="0.39" model_1_neg_distr="2.10" obs_2_distr="12" model_2_pos_distr="9.51" model_2_neg_distr="6.18" obs_3_distr="27" model_3_pos_distr="15.03" model_3_neg_distr="12.94"/>
|
|
78
|
+
<distribution_point fvalue="2.70" obs_1_distr="2" model_1_pos_distr="0.39" model_1_neg_distr="1.68" obs_2_distr="13" model_2_pos_distr="8.93" model_2_neg_distr="5.25" obs_3_distr="36" model_3_pos_distr="15.38" model_3_neg_distr="10.91"/>
|
|
79
|
+
<distribution_point fvalue="2.90" obs_1_distr="3" model_1_pos_distr="0.37" model_1_neg_distr="1.34" obs_2_distr="12" model_2_pos_distr="8.25" model_2_neg_distr="4.44" obs_3_distr="21" model_3_pos_distr="15.60" model_3_neg_distr="9.15"/>
|
|
80
|
+
<distribution_point fvalue="3.10" obs_1_distr="0" model_1_pos_distr="0.32" model_1_neg_distr="1.06" obs_2_distr="8" model_2_pos_distr="7.49" model_2_neg_distr="3.75" obs_3_distr="23" model_3_pos_distr="15.69" model_3_neg_distr="7.64"/>
|
|
81
|
+
<distribution_point fvalue="3.30" obs_1_distr="0" model_1_pos_distr="0.27" model_1_neg_distr="0.84" obs_2_distr="8" model_2_pos_distr="6.68" model_2_neg_distr="3.16" obs_3_distr="23" model_3_pos_distr="15.64" model_3_neg_distr="6.36"/>
|
|
82
|
+
<distribution_point fvalue="3.50" obs_1_distr="0" model_1_pos_distr="0.21" model_1_neg_distr="0.67" obs_2_distr="11" model_2_pos_distr="5.86" model_2_neg_distr="2.66" obs_3_distr="20" model_3_pos_distr="15.46" model_3_neg_distr="5.27"/>
|
|
83
|
+
<distribution_point fvalue="3.70" obs_1_distr="1" model_1_pos_distr="0.15" model_1_neg_distr="0.53" obs_2_distr="3" model_2_pos_distr="5.05" model_2_neg_distr="2.23" obs_3_distr="10" model_3_pos_distr="15.15" model_3_neg_distr="4.35"/>
|
|
84
|
+
<distribution_point fvalue="3.90" obs_1_distr="0" model_1_pos_distr="0.10" model_1_neg_distr="0.42" obs_2_distr="1" model_2_pos_distr="4.28" model_2_neg_distr="1.87" obs_3_distr="16" model_3_pos_distr="14.72" model_3_neg_distr="3.58"/>
|
|
85
|
+
<distribution_point fvalue="4.10" obs_1_distr="0" model_1_pos_distr="0.06" model_1_neg_distr="0.33" obs_2_distr="2" model_2_pos_distr="3.56" model_2_neg_distr="1.56" obs_3_distr="13" model_3_pos_distr="14.17" model_3_neg_distr="2.94"/>
|
|
86
|
+
<distribution_point fvalue="4.30" obs_1_distr="0" model_1_pos_distr="0.04" model_1_neg_distr="0.26" obs_2_distr="2" model_2_pos_distr="2.91" model_2_neg_distr="1.30" obs_3_distr="12" model_3_pos_distr="13.53" model_3_neg_distr="2.40"/>
|
|
87
|
+
<distribution_point fvalue="4.50" obs_1_distr="0" model_1_pos_distr="0.02" model_1_neg_distr="0.20" obs_2_distr="3" model_2_pos_distr="2.34" model_2_neg_distr="1.08" obs_3_distr="6" model_3_pos_distr="12.81" model_3_neg_distr="1.95"/>
|
|
88
|
+
<distribution_point fvalue="4.70" obs_1_distr="0" model_1_pos_distr="0.01" model_1_neg_distr="0.16" obs_2_distr="3" model_2_pos_distr="1.85" model_2_neg_distr="0.90" obs_3_distr="12" model_3_pos_distr="12.03" model_3_neg_distr="1.59"/>
|
|
89
|
+
<distribution_point fvalue="4.90" obs_1_distr="0" model_1_pos_distr="0.01" model_1_neg_distr="0.13" obs_2_distr="1" model_2_pos_distr="1.44" model_2_neg_distr="0.75" obs_3_distr="6" model_3_pos_distr="11.19" model_3_neg_distr="1.29"/>
|
|
90
|
+
<distribution_point fvalue="5.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.10" obs_2_distr="2" model_2_pos_distr="1.10" model_2_neg_distr="0.62" obs_3_distr="8" model_3_pos_distr="10.33" model_3_neg_distr="1.04"/>
|
|
91
|
+
<distribution_point fvalue="5.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.08" obs_2_distr="3" model_2_pos_distr="0.82" model_2_neg_distr="0.51" obs_3_distr="9" model_3_pos_distr="9.44" model_3_neg_distr="0.84"/>
|
|
92
|
+
<distribution_point fvalue="5.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.06" obs_2_distr="0" model_2_pos_distr="0.61" model_2_neg_distr="0.42" obs_3_distr="8" model_3_pos_distr="8.56" model_3_neg_distr="0.67"/>
|
|
93
|
+
<distribution_point fvalue="5.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.05" obs_2_distr="1" model_2_pos_distr="0.44" model_2_neg_distr="0.35" obs_3_distr="5" model_3_pos_distr="7.70" model_3_neg_distr="0.54"/>
|
|
94
|
+
<distribution_point fvalue="5.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.04" obs_2_distr="0" model_2_pos_distr="0.31" model_2_neg_distr="0.29" obs_3_distr="7" model_3_pos_distr="6.86" model_3_neg_distr="0.43"/>
|
|
95
|
+
<distribution_point fvalue="6.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.03" obs_2_distr="0" model_2_pos_distr="0.22" model_2_neg_distr="0.24" obs_3_distr="6" model_3_pos_distr="6.07" model_3_neg_distr="0.34"/>
|
|
96
|
+
<distribution_point fvalue="6.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.02" obs_2_distr="0" model_2_pos_distr="0.15" model_2_neg_distr="0.19" obs_3_distr="7" model_3_pos_distr="5.31" model_3_neg_distr="0.27"/>
|
|
97
|
+
<distribution_point fvalue="6.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.02" obs_2_distr="0" model_2_pos_distr="0.10" model_2_neg_distr="0.16" obs_3_distr="5" model_3_pos_distr="4.62" model_3_neg_distr="0.22"/>
|
|
98
|
+
<distribution_point fvalue="6.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="0" model_2_pos_distr="0.07" model_2_neg_distr="0.13" obs_3_distr="4" model_3_pos_distr="3.98" model_3_neg_distr="0.17"/>
|
|
99
|
+
<distribution_point fvalue="6.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="1" model_2_pos_distr="0.04" model_2_neg_distr="0.11" obs_3_distr="2" model_3_pos_distr="3.39" model_3_neg_distr="0.14"/>
|
|
100
|
+
<distribution_point fvalue="7.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="0" model_2_pos_distr="0.03" model_2_neg_distr="0.09" obs_3_distr="1" model_3_pos_distr="2.87" model_3_neg_distr="0.11"/>
|
|
101
|
+
<distribution_point fvalue="7.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="0" model_2_pos_distr="0.02" model_2_neg_distr="0.07" obs_3_distr="4" model_3_pos_distr="2.41" model_3_neg_distr="0.09"/>
|
|
102
|
+
<distribution_point fvalue="7.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.01" model_2_neg_distr="0.06" obs_3_distr="1" model_3_pos_distr="2.01" model_3_neg_distr="0.07"/>
|
|
103
|
+
<distribution_point fvalue="7.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.01" model_2_neg_distr="0.05" obs_3_distr="3" model_3_pos_distr="1.65" model_3_neg_distr="0.05"/>
|
|
104
|
+
<distribution_point fvalue="7.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.04" obs_3_distr="3" model_3_pos_distr="1.35" model_3_neg_distr="0.04"/>
|
|
105
|
+
<distribution_point fvalue="8.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.03" obs_3_distr="1" model_3_pos_distr="1.10" model_3_neg_distr="0.03"/>
|
|
106
|
+
<distribution_point fvalue="8.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.03" obs_3_distr="3" model_3_pos_distr="0.88" model_3_neg_distr="0.03"/>
|
|
107
|
+
<distribution_point fvalue="8.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.02" obs_3_distr="0" model_3_pos_distr="0.70" model_3_neg_distr="0.02"/>
|
|
108
|
+
<distribution_point fvalue="8.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.02" obs_3_distr="3" model_3_pos_distr="0.56" model_3_neg_distr="0.02"/>
|
|
109
|
+
<distribution_point fvalue="8.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.01" obs_3_distr="2" model_3_pos_distr="0.43" model_3_neg_distr="0.01"/>
|
|
110
|
+
<distribution_point fvalue="9.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.01" obs_3_distr="1" model_3_pos_distr="0.34" model_3_neg_distr="0.01"/>
|
|
111
|
+
<distribution_point fvalue="9.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.01" obs_3_distr="0" model_3_pos_distr="0.26" model_3_neg_distr="0.01"/>
|
|
112
|
+
<distribution_point fvalue="9.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.01" obs_3_distr="1" model_3_pos_distr="0.20" model_3_neg_distr="0.01"/>
|
|
113
|
+
<distribution_point fvalue="9.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.01" obs_3_distr="0" model_3_pos_distr="0.15" model_3_neg_distr="0.00"/>
|
|
114
|
+
<distribution_point fvalue="9.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="0" model_2_pos_distr="0.00" model_2_neg_distr="0.00" obs_3_distr="0" model_3_pos_distr="0.11" model_3_neg_distr="0.00"/>
|
|
115
|
+
<mixture_model precursor_ion_charge="1" comments="using training data negative distributions" prior_probability="0.004" est_tot_correct="3.8" tot_num_spectra="898" num_iterations="8">
|
|
116
|
+
<mixturemodel_distribution name="SEQUEST discrim score [fval] negmean: 1.00">
|
|
117
|
+
<posmodel_distribution type="gaussian">
|
|
118
|
+
<parameter name="mean" value="2.62"/>
|
|
119
|
+
<parameter name="stdev" value="0.77"/>
|
|
120
|
+
</posmodel_distribution>
|
|
121
|
+
<negmodel_distribution type="gamma">
|
|
122
|
+
<parameter name="m1" value="1.62"/>
|
|
123
|
+
<parameter name="m2" value="3.78"/>
|
|
124
|
+
<parameter name="alpha" value="0.72"/>
|
|
125
|
+
<parameter name="beta" value="2.26"/>
|
|
126
|
+
<parameter name="zero" value="-2.00"/>
|
|
127
|
+
<parameter name="minval" value="-2.00"/>
|
|
128
|
+
</negmodel_distribution>
|
|
129
|
+
</mixturemodel_distribution>
|
|
130
|
+
<mixturemodel_distribution name="no. tolerable trypsin term. [ntt]">
|
|
131
|
+
<posmodel_distribution>
|
|
132
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
133
|
+
<parameter name="ntt=1" value="0.000"/>
|
|
134
|
+
<parameter name="ntt=2" value="1.000"/>
|
|
135
|
+
</posmodel_distribution>
|
|
136
|
+
<negmodel_distribution>
|
|
137
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
138
|
+
<parameter name="ntt=1" value="0.000"/>
|
|
139
|
+
<parameter name="ntt=2" value="1.000"/>
|
|
140
|
+
</negmodel_distribution>
|
|
141
|
+
</mixturemodel_distribution>
|
|
142
|
+
<mixturemodel_distribution name="no. missed enz. cleavages [nmc]">
|
|
143
|
+
<posmodel_distribution>
|
|
144
|
+
<parameter name="nmc=0" value="0.739"/>
|
|
145
|
+
<parameter name="1<=nmc<=2" value="0.261"/>
|
|
146
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
147
|
+
</posmodel_distribution>
|
|
148
|
+
<negmodel_distribution>
|
|
149
|
+
<parameter name="nmc=0" value="0.566"/>
|
|
150
|
+
<parameter name="1<=nmc<=2" value="0.434"/>
|
|
151
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
152
|
+
</negmodel_distribution>
|
|
153
|
+
</mixturemodel_distribution>
|
|
154
|
+
<mixturemodel_distribution name="var offset mass diff [massd] (offset: 0.000000)">
|
|
155
|
+
<posmodel_distribution>
|
|
156
|
+
<parameter name="massd=0.000000" value="1.000000000"/>
|
|
157
|
+
</posmodel_distribution>
|
|
158
|
+
<negmodel_distribution>
|
|
159
|
+
<parameter name="massd=0.000000" value="1.000000000"/>
|
|
160
|
+
</negmodel_distribution>
|
|
161
|
+
</mixturemodel_distribution>
|
|
162
|
+
</mixture_model>
|
|
163
|
+
<mixture_model precursor_ion_charge="2" comments="using training data negative distributions" prior_probability="0.115" est_tot_correct="196.3" tot_num_spectra="1706" num_iterations="5">
|
|
164
|
+
<mixturemodel_distribution name="SEQUEST discrim score [fval] negmean: -3.25">
|
|
165
|
+
<posmodel_distribution type="gaussian">
|
|
166
|
+
<parameter name="mean" value="1.89"/>
|
|
167
|
+
<parameter name="stdev" value="1.52"/>
|
|
168
|
+
</posmodel_distribution>
|
|
169
|
+
<negmodel_distribution type="gamma">
|
|
170
|
+
<parameter name="m1" value="3.69"/>
|
|
171
|
+
<parameter name="m2" value="16.40"/>
|
|
172
|
+
<parameter name="alpha" value="0.75"/>
|
|
173
|
+
<parameter name="beta" value="4.94"/>
|
|
174
|
+
<parameter name="zero" value="-5.00"/>
|
|
175
|
+
</negmodel_distribution>
|
|
176
|
+
</mixturemodel_distribution>
|
|
177
|
+
<mixturemodel_distribution name="no. tolerable trypsin term. [ntt]">
|
|
178
|
+
<posmodel_distribution>
|
|
179
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
180
|
+
<parameter name="ntt=1" value="0.000"/>
|
|
181
|
+
<parameter name="ntt=2" value="1.000"/>
|
|
182
|
+
</posmodel_distribution>
|
|
183
|
+
<negmodel_distribution>
|
|
184
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
185
|
+
<parameter name="ntt=1" value="0.000"/>
|
|
186
|
+
<parameter name="ntt=2" value="1.000"/>
|
|
187
|
+
</negmodel_distribution>
|
|
188
|
+
</mixturemodel_distribution>
|
|
189
|
+
<mixturemodel_distribution name="no. missed enz. cleavages [nmc]">
|
|
190
|
+
<posmodel_distribution>
|
|
191
|
+
<parameter name="nmc=0" value="0.385"/>
|
|
192
|
+
<parameter name="1<=nmc<=2" value="0.615"/>
|
|
193
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
194
|
+
</posmodel_distribution>
|
|
195
|
+
<negmodel_distribution>
|
|
196
|
+
<parameter name="nmc=0" value="0.437"/>
|
|
197
|
+
<parameter name="1<=nmc<=2" value="0.563"/>
|
|
198
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
199
|
+
</negmodel_distribution>
|
|
200
|
+
</mixturemodel_distribution>
|
|
201
|
+
<mixturemodel_distribution name="var offset mass diff [massd] (offset: -0.500000)">
|
|
202
|
+
<posmodel_distribution>
|
|
203
|
+
<parameter name="massd=0.000000" value="0.539533203"/>
|
|
204
|
+
<parameter name="massd=1.000000" value="0.460466797"/>
|
|
205
|
+
</posmodel_distribution>
|
|
206
|
+
<negmodel_distribution>
|
|
207
|
+
<parameter name="massd=0.000000" value="0.496137305"/>
|
|
208
|
+
<parameter name="massd=1.000000" value="0.503862695"/>
|
|
209
|
+
</negmodel_distribution>
|
|
210
|
+
</mixturemodel_distribution>
|
|
211
|
+
</mixture_model>
|
|
212
|
+
<mixture_model precursor_ion_charge="3" comments="using training data negative distributions" prior_probability="0.201" est_tot_correct="423.7" tot_num_spectra="2107" num_iterations="3">
|
|
213
|
+
<mixturemodel_distribution name="SEQUEST discrim score [fval] negmean: -2.85">
|
|
214
|
+
<posmodel_distribution type="gaussian">
|
|
215
|
+
<parameter name="mean" value="3.13"/>
|
|
216
|
+
<parameter name="stdev" value="2.15"/>
|
|
217
|
+
</posmodel_distribution>
|
|
218
|
+
<negmodel_distribution type="gamma">
|
|
219
|
+
<parameter name="m1" value="4.44"/>
|
|
220
|
+
<parameter name="m2" value="22.22"/>
|
|
221
|
+
<parameter name="alpha" value="0.58"/>
|
|
222
|
+
<parameter name="beta" value="7.71"/>
|
|
223
|
+
<parameter name="zero" value="-5.00"/>
|
|
224
|
+
</negmodel_distribution>
|
|
225
|
+
</mixturemodel_distribution>
|
|
226
|
+
<mixturemodel_distribution name="no. tolerable trypsin term. [ntt]">
|
|
227
|
+
<posmodel_distribution>
|
|
228
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
229
|
+
<parameter name="ntt=1" value="0.000"/>
|
|
230
|
+
<parameter name="ntt=2" value="1.000"/>
|
|
231
|
+
</posmodel_distribution>
|
|
232
|
+
<negmodel_distribution>
|
|
233
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
234
|
+
<parameter name="ntt=1" value="0.000"/>
|
|
235
|
+
<parameter name="ntt=2" value="1.000"/>
|
|
236
|
+
</negmodel_distribution>
|
|
237
|
+
</mixturemodel_distribution>
|
|
238
|
+
<mixturemodel_distribution name="no. missed enz. cleavages [nmc]">
|
|
239
|
+
<posmodel_distribution>
|
|
240
|
+
<parameter name="nmc=0" value="0.310"/>
|
|
241
|
+
<parameter name="1<=nmc<=2" value="0.690"/>
|
|
242
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
243
|
+
</posmodel_distribution>
|
|
244
|
+
<negmodel_distribution>
|
|
245
|
+
<parameter name="nmc=0" value="0.292"/>
|
|
246
|
+
<parameter name="1<=nmc<=2" value="0.708"/>
|
|
247
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
248
|
+
</negmodel_distribution>
|
|
249
|
+
</mixturemodel_distribution>
|
|
250
|
+
<mixturemodel_distribution name="var offset mass diff [massd] (offset: 0.000000)">
|
|
251
|
+
<posmodel_distribution>
|
|
252
|
+
<parameter name="massd=0.000000" value="1.000000000"/>
|
|
253
|
+
</posmodel_distribution>
|
|
254
|
+
<negmodel_distribution>
|
|
255
|
+
<parameter name="massd=0.000000" value="1.000000000"/>
|
|
256
|
+
</negmodel_distribution>
|
|
257
|
+
</mixturemodel_distribution>
|
|
258
|
+
</mixture_model>
|
|
259
|
+
</peptideprophet_summary>
|
|
260
|
+
</analysis_summary>
|
|
261
|
+
<analysis_summary analysis="interact" time="2007-04-24T13:37:06">
|
|
262
|
+
<interact_summary filename="/work/tpp-data/interact-opd1_mods.xml" directory="/work/tpp-data">
|
|
263
|
+
<inputfile name="sequest/pepxml/020.xml"/>
|
|
264
|
+
<inputfile name="sequest/pepxml/040.xml"/>
|
|
265
|
+
</interact_summary>
|
|
266
|
+
</analysis_summary>
|
|
267
|
+
<dataset_derivation generation_no="0"/>
|
|
268
|
+
<msms_run_summary base_name="/work/john/mspire/test/tfiles_large/opd1_2runs_2mods/sequest/pepxml/020" msManufacturer="ThermoFinnigan" msModel="LCQ Deca XP" msIonization="ESI" msMassAnalyzer="Ion Trap" msDetector="UNKNOWN" raw_data_type="raw" raw_data=".mzXML">
|
|
269
|
+
<sample_enzyme name="trypsin">
|
|
270
|
+
<specificity cut="KR" no_cut="P" sense="C"/>
|
|
271
|
+
</sample_enzyme>
|
|
272
|
+
<search_summary base_name="/work/john/mspire/test/tfiles_large/opd1_2runs_2mods/sequest/pepxml/020" search_engine="SEQUEST" precursor_mass_type="average" fragment_mass_type="average" out_data_type="out" out_data=".tgz" search_id="1">
|
|
273
|
+
<search_database local_path="/project/marcotte/marcotte/ms/database/ecoli_K12_ncbi_20060321.fasta" type="AA"/>
|
|
274
|
+
<enzymatic_search_constraint enzyme="Trypsin" max_num_internal_cleavages="2" min_number_termini="2"/>
|
|
275
|
+
<aminoacid_modification binary="N" mass="147.192" symbol="*" massdiff="+15.9994" aminoacid="M" variable="Y"/>
|
|
276
|
+
<aminoacid_modification binary="N" mass="167.0581" symbol="#" massdiff="+79.9799" aminoacid="S" variable="Y"/>
|
|
277
|
+
<aminoacid_modification binary="N" mass="181.085" symbol="#" massdiff="+79.9799" aminoacid="T" variable="Y"/>
|
|
278
|
+
<aminoacid_modification binary="N" mass="243.1559" symbol="#" massdiff="+79.9799" aminoacid="Y" variable="Y"/>
|
|
279
|
+
<parameter name="diff_search_options" value="15.999400 M 79.979900 STY 0.000000 M 0.000000 X 0.000000 T 0.000000 Y"/>
|
|
280
|
+
<parameter name="digest_mass_range" value="600.0 3500.0"/>
|
|
281
|
+
<parameter name="enzyme_info" value="Trypsin(KR/P) 1 1 KR P"/>
|
|
282
|
+
<parameter name="first_database_name" value="/project/marcotte/marcotte/ms/database/ecoli_K12_ncbi_20060321.fasta"/>
|
|
283
|
+
<parameter name="fragment_ion_tolerance" value="1.0000"/>
|
|
284
|
+
<parameter name="fragment_ion_units" value="0"/>
|
|
285
|
+
<parameter name="ion_cutoff_percentage" value="0.0000"/>
|
|
286
|
+
<parameter name="ion_series" value="0 1 1 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0"/>
|
|
287
|
+
<parameter name="mass_type_fragment" value="0"/>
|
|
288
|
+
<parameter name="mass_type_parent" value="0"/>
|
|
289
|
+
<parameter name="match_peak_allowed_error" value="1"/>
|
|
290
|
+
<parameter name="match_peak_count" value="0"/>
|
|
291
|
+
<parameter name="match_peak_tolerance" value="1.0000"/>
|
|
292
|
+
<parameter name="max_num_differential_per_peptide" value="3"/>
|
|
293
|
+
<parameter name="max_num_internal_cleavage_sites" value="2"/>
|
|
294
|
+
<parameter name="normalize_xcorr" value="0"/>
|
|
295
|
+
<parameter name="nucleotide_reading_frame" value="0"/>
|
|
296
|
+
<parameter name="num_description_lines" value="5"/>
|
|
297
|
+
<parameter name="num_output_lines" value="10"/>
|
|
298
|
+
<parameter name="num_results" value="250"/>
|
|
299
|
+
<parameter name="partial_sequence" value=""/>
|
|
300
|
+
<parameter name="peptide_mass_tolerance" value="25.0000"/>
|
|
301
|
+
<parameter name="peptide_mass_units" value="2"/>
|
|
302
|
+
<parameter name="print_duplicate_references" value="40"/>
|
|
303
|
+
<parameter name="protein_mass_filter" value="0 0"/>
|
|
304
|
+
<parameter name="remove_precursor_peak" value="0"/>
|
|
305
|
+
<parameter name="search_engine" value="SEQUEST"/>
|
|
306
|
+
<parameter name="second_database_name" value=""/>
|
|
307
|
+
<parameter name="sequence_header_filter" value=""/>
|
|
308
|
+
<parameter name="show_fragment_ions" value="0"/>
|
|
309
|
+
<parameter name="term_diff_search_options" value="0.000000 0.000000"/>
|
|
310
|
+
</search_summary>
|
|
311
|
+
<analysis_timestamp analysis="database_refresh" time="2007-04-24T13:37:10" id="1">
|
|
312
|
+
<database_refresh_timestamp database="/project/marcotte/marcotte/ms/database/ecoli_K12_ncbi_20060321.fasta"/>
|
|
313
|
+
</analysis_timestamp>
|
|
314
|
+
<analysis_timestamp analysis="peptideprophet" time="2007-04-24T13:37:09" id="1"/>
|
|
315
|
+
<spectrum_query spectrum="020.42.42.3" start_scan="42" end_scan="42" precursor_neutral_mass="1015.77285654469" assumed_charge="3" index="1">
|
|
316
|
+
<search_result>
|
|
317
|
+
<search_hit hit_rank="1" peptide="GTGVSVTR" peptide_prev_aa="R" peptide_next_aa="S" protein="gi|49176370|ref|YP_026228.1|" num_tot_proteins="1" num_matched_ions="10" tot_num_ions="70" calc_neutral_pep_mass="1015.79382542" massdiff="-0.0209688753124055" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="putative outer membrane protein [Escherichia coli K12]">
|
|
318
|
+
<modification_info modified_peptide="GT[181]GVSV[167]TR">
|
|
319
|
+
<mod_aminoacid_mass position="2" mass="181.085"/>
|
|
320
|
+
<mod_aminoacid_mass position="6" mass="167.0581"/>
|
|
321
|
+
<mod_aminoacid_mass position="9" mass="181.085"/>
|
|
322
|
+
</modification_info>
|
|
323
|
+
<search_score name="xcorr" value="1.06543827056885"/>
|
|
324
|
+
<search_score name="deltacn" value="0.192325830459595"/>
|
|
325
|
+
<search_score name="deltacnstar" value="0"/>
|
|
326
|
+
<search_score name="spscore" value="77.8397979736328"/>
|
|
327
|
+
<search_score name="sprank" value="3"/>
|
|
328
|
+
<analysis_result analysis="peptideprophet">
|
|
329
|
+
<peptideprophet_result probability="0.07881571" all_ntt_prob="(0.0000,0.0000,0.0788)">
|
|
330
|
+
<search_score_summary>
|
|
331
|
+
<parameter name="fval" value="0.1592"/>
|
|
332
|
+
<parameter name="ntt" value="2"/>
|
|
333
|
+
<parameter name="nmc" value="0"/>
|
|
334
|
+
<parameter name="massd" value="-0.021"/>
|
|
335
|
+
</search_score_summary>
|
|
336
|
+
</peptideprophet_result>
|
|
337
|
+
</analysis_result>
|
|
338
|
+
</search_hit>
|
|
339
|
+
</search_result>
|
|
340
|
+
</spectrum_query>
|
|
341
|
+
<spectrum_query spectrum="020.58.58.3" start_scan="58" end_scan="58" precursor_neutral_mass="2586.0981739275" assumed_charge="3" index="2">
|
|
342
|
+
<search_result>
|
|
343
|
+
<search_hit hit_rank="1" peptide="AVAAMTRYRQQLLPPLFSALMK" peptide_prev_aa="R" peptide_next_aa="Y" protein="gi|16131943|ref|NP_418541.1|" num_tot_proteins="1" num_matched_ions="5" tot_num_ions="126" calc_neutral_pep_mass="2586.03404942" massdiff="+0.0641245075007646" num_tol_term="2" num_missed_cleavages="2" is_rejected="0" protein_descr="arginine decarboxylase; inducible by acid, catabolic [Escherichia coli K12]">
|
|
344
|
+
<modification_info modified_peptide="AVAAMTRYRQQLLPPLFS[167]ALMK">
|
|
345
|
+
<mod_aminoacid_mass position="18" mass="167.0581"/>
|
|
346
|
+
</modification_info>
|
|
347
|
+
<search_score name="xcorr" value="0.223117798566818"/>
|
|
348
|
+
<search_score name="deltacn" value="0.644854307174683"/>
|
|
349
|
+
<search_score name="deltacnstar" value="0"/>
|
|
350
|
+
<search_score name="spscore" value="15.7188243865967"/>
|
|
351
|
+
<search_score name="sprank" value="8"/>
|
|
352
|
+
<analysis_result analysis="peptideprophet">
|
|
353
|
+
<peptideprophet_result probability="0.25764597" all_ntt_prob="(0.0000,0.0000,0.2576)">
|
|
354
|
+
<search_score_summary>
|
|
355
|
+
<parameter name="fval" value="1.2777"/>
|
|
356
|
+
<parameter name="ntt" value="2"/>
|
|
357
|
+
<parameter name="nmc" value="1"/>
|
|
358
|
+
<parameter name="massd" value="0.064"/>
|
|
359
|
+
</search_score_summary>
|
|
360
|
+
</peptideprophet_result>
|
|
361
|
+
</analysis_result>
|
|
362
|
+
</search_hit>
|
|
363
|
+
</search_result>
|
|
364
|
+
</spectrum_query>
|
|
365
|
+
<spectrum_query spectrum="020.80.80.2" start_scan="80" end_scan="80" precursor_neutral_mass="795.857037471563" assumed_charge="2" index="3">
|
|
366
|
+
<search_result>
|
|
367
|
+
<search_hit hit_rank="1" peptide="YVPPIK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|16129101|ref|NP_415656.1|" num_tot_proteins="1" num_matched_ions="7" tot_num_ions="15" calc_neutral_pep_mass="795.86332542" massdiff="-0.00628794843748892" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="e14 prophage [Escherichia coli K12]">
|
|
368
|
+
<modification_info modified_peptide="Y[243]VPPIK">
|
|
369
|
+
<mod_aminoacid_mass position="1" mass="243.1559"/>
|
|
370
|
+
</modification_info>
|
|
371
|
+
<search_score name="xcorr" value="0.705689549446106"/>
|
|
372
|
+
<search_score name="deltacn" value="0.395860612392426"/>
|
|
373
|
+
<search_score name="deltacnstar" value="0"/>
|
|
374
|
+
<search_score name="spscore" value="152.141448974609"/>
|
|
375
|
+
<search_score name="sprank" value="1"/>
|
|
376
|
+
<analysis_result analysis="peptideprophet">
|
|
377
|
+
<peptideprophet_result probability="0.11128366" all_ntt_prob="(0.0000,0.0000,0.1113)">
|
|
378
|
+
<search_score_summary>
|
|
379
|
+
<parameter name="fval" value="0.0939"/>
|
|
380
|
+
<parameter name="ntt" value="2"/>
|
|
381
|
+
<parameter name="nmc" value="0"/>
|
|
382
|
+
<parameter name="massd" value="-0.006"/>
|
|
383
|
+
</search_score_summary>
|
|
384
|
+
</peptideprophet_result>
|
|
385
|
+
</analysis_result>
|
|
386
|
+
</search_hit>
|
|
387
|
+
</search_result>
|
|
388
|
+
</spectrum_query>
|
|
389
|
+
<spectrum_query spectrum="020.104.104.3" start_scan="104" end_scan="104" precursor_neutral_mass="1326.28677256031" assumed_charge="3" index="4">
|
|
390
|
+
<search_result>
|
|
391
|
+
<search_hit hit_rank="1" peptide="LEGEESDLARK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|16131046|ref|NP_417623.1|" num_tot_proteins="1" num_matched_ions="11" tot_num_ions="60" calc_neutral_pep_mass="1326.30978542" massdiff="-0.0230128596874692" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="hypothetical protein b3154 [Escherichia coli K12]">
|
|
392
|
+
<modification_info modified_peptide="LEGEES[167]DLARK">
|
|
393
|
+
<mod_aminoacid_mass position="6" mass="167.0581"/>
|
|
394
|
+
</modification_info>
|
|
395
|
+
<search_score name="xcorr" value="0.994660556316376"/>
|
|
396
|
+
<search_score name="deltacn" value="0.397965431213379"/>
|
|
397
|
+
<search_score name="deltacnstar" value="0"/>
|
|
398
|
+
<search_score name="spscore" value="120.155563354492"/>
|
|
399
|
+
<search_score name="sprank" value="8"/>
|
|
400
|
+
<analysis_result analysis="peptideprophet">
|
|
401
|
+
<peptideprophet_result probability="0.46972454" all_ntt_prob="(0.0000,0.0000,0.4697)">
|
|
402
|
+
<search_score_summary>
|
|
403
|
+
<parameter name="fval" value="2.0617"/>
|
|
404
|
+
<parameter name="ntt" value="2"/>
|
|
405
|
+
<parameter name="nmc" value="1"/>
|
|
406
|
+
<parameter name="massd" value="-0.023"/>
|
|
407
|
+
</search_score_summary>
|
|
408
|
+
</peptideprophet_result>
|
|
409
|
+
</analysis_result>
|
|
410
|
+
</search_hit>
|
|
411
|
+
</search_result>
|
|
412
|
+
</spectrum_query>
|
|
413
|
+
<spectrum_query spectrum="020.158.158.3" start_scan="158" end_scan="158" precursor_neutral_mass="1151.46792490406" assumed_charge="3" index="5">
|
|
414
|
+
<search_result>
|
|
415
|
+
<search_hit hit_rank="1" peptide="MKDLLKFLK" peptide_prev_aa="-" peptide_next_aa="A" protein="gi|16131818|ref|NP_418415.1|" num_tot_proteins="1" num_matched_ions="6" tot_num_ions="32" calc_neutral_pep_mass="1151.46772442" massdiff="+0.000200484062816031" num_tol_term="2" num_missed_cleavages="2" is_rejected="0" protein_descr="DNA-directed RNA polymerase beta' subunit [Escherichia coli K12]">
|
|
416
|
+
<modification_info modified_peptide="M[147]KDLLKFLK">
|
|
417
|
+
<mod_aminoacid_mass position="1" mass="147.192"/>
|
|
418
|
+
</modification_info>
|
|
419
|
+
<search_score name="xcorr" value="0.254981607198715"/>
|
|
420
|
+
<search_score name="deltacn" value="0.720395803451538"/>
|
|
421
|
+
<search_score name="deltacnstar" value="0"/>
|
|
422
|
+
<search_score name="spscore" value="51.8907661437988"/>
|
|
423
|
+
<search_score name="sprank" value="1"/>
|
|
424
|
+
<analysis_result analysis="peptideprophet">
|
|
425
|
+
<peptideprophet_result probability="0.47041741" all_ntt_prob="(0.0000,0.0000,0.4704)">
|
|
426
|
+
<search_score_summary>
|
|
427
|
+
<parameter name="fval" value="2.0641"/>
|
|
428
|
+
<parameter name="ntt" value="2"/>
|
|
429
|
+
<parameter name="nmc" value="1"/>
|
|
430
|
+
<parameter name="massd" value="0.000"/>
|
|
431
|
+
</search_score_summary>
|
|
432
|
+
</peptideprophet_result>
|
|
433
|
+
</analysis_result>
|
|
434
|
+
</search_hit>
|
|
435
|
+
</search_result>
|
|
436
|
+
</spectrum_query>
|
|
437
|
+
<spectrum_query spectrum="020.171.171.3" start_scan="171" end_scan="171" precursor_neutral_mass="1413.41805918141" assumed_charge="3" index="6">
|
|
438
|
+
<search_result>
|
|
439
|
+
<search_hit hit_rank="1" peptide="TLAAFLYALDR" peptide_prev_aa="K" peptide_next_aa="L" protein="gi|16129611|ref|NP_416170.1|" num_tot_proteins="1" num_matched_ions="10" tot_num_ions="80" calc_neutral_pep_mass="1413.41179042" massdiff="+0.00626876140631794" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="member of ATP-dependent helicase superfamily II [Escherichia coli K12]">
|
|
440
|
+
<modification_info modified_peptide="T[181]LAAFLYA[243]LDR">
|
|
441
|
+
<mod_aminoacid_mass position="1" mass="181.085"/>
|
|
442
|
+
<mod_aminoacid_mass position="8" mass="243.1559"/>
|
|
443
|
+
</modification_info>
|
|
444
|
+
<search_score name="xcorr" value="0.654914498329163"/>
|
|
445
|
+
<search_score name="deltacn" value="0.441779345273972"/>
|
|
446
|
+
<search_score name="deltacnstar" value="0"/>
|
|
447
|
+
<search_score name="spscore" value="49.6860275268555"/>
|
|
448
|
+
<search_score name="sprank" value="30"/>
|
|
449
|
+
<analysis_result analysis="peptideprophet">
|
|
450
|
+
<peptideprophet_result probability="0.21833146" all_ntt_prob="(0.0000,0.0000,0.2183)">
|
|
451
|
+
<search_score_summary>
|
|
452
|
+
<parameter name="fval" value="1.1016"/>
|
|
453
|
+
<parameter name="ntt" value="2"/>
|
|
454
|
+
<parameter name="nmc" value="0"/>
|
|
455
|
+
<parameter name="massd" value="0.006"/>
|
|
456
|
+
</search_score_summary>
|
|
457
|
+
</peptideprophet_result>
|
|
458
|
+
</analysis_result>
|
|
459
|
+
</search_hit>
|
|
460
|
+
</search_result>
|
|
461
|
+
</spectrum_query>
|
|
462
|
+
<spectrum_query spectrum="020.187.187.3" start_scan="187" end_scan="187" precursor_neutral_mass="1721.90920908375" assumed_charge="3" index="7">
|
|
463
|
+
<search_result>
|
|
464
|
+
<search_hit hit_rank="1" peptide="GLIQLANMLRSQAAR" peptide_prev_aa="R" peptide_next_aa="S" protein="gi|90111091|ref|NP_414689.4|" num_tot_proteins="1" num_matched_ions="14" tot_num_ions="84" calc_neutral_pep_mass="1721.92441442" massdiff="-0.0152053362498918" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="2'-5' RNA ligase [Escherichia coli K12]">
|
|
465
|
+
<modification_info modified_peptide="GLIQLANMLRS[167]QAAR">
|
|
466
|
+
<mod_aminoacid_mass position="11" mass="167.0581"/>
|
|
467
|
+
</modification_info>
|
|
468
|
+
<search_score name="xcorr" value="0.896096765995026"/>
|
|
469
|
+
<search_score name="deltacn" value="0.253862977027893"/>
|
|
470
|
+
<search_score name="deltacnstar" value="0"/>
|
|
471
|
+
<search_score name="spscore" value="130.671142578125"/>
|
|
472
|
+
<search_score name="sprank" value="2"/>
|
|
473
|
+
<analysis_result analysis="peptideprophet">
|
|
474
|
+
<peptideprophet_result probability="0.11045808" all_ntt_prob="(0.0000,0.0000,0.1105)">
|
|
475
|
+
<search_score_summary>
|
|
476
|
+
<parameter name="fval" value="0.4545"/>
|
|
477
|
+
<parameter name="ntt" value="2"/>
|
|
478
|
+
<parameter name="nmc" value="1"/>
|
|
479
|
+
<parameter name="massd" value="-0.015"/>
|
|
480
|
+
</search_score_summary>
|
|
481
|
+
</peptideprophet_result>
|
|
482
|
+
</analysis_result>
|
|
483
|
+
</search_hit>
|
|
484
|
+
</search_result>
|
|
485
|
+
</spectrum_query>
|
|
486
|
+
<spectrum_query spectrum="020.207.207.3" start_scan="207" end_scan="207" precursor_neutral_mass="1015.905791115" assumed_charge="3" index="8">
|
|
487
|
+
<search_result>
|
|
488
|
+
<search_hit hit_rank="1" peptide="TVETSDER" peptide_prev_aa="K" peptide_next_aa="L" protein="gi|16131359|ref|NP_417944.1|" num_tot_proteins="1" num_matched_ions="10" tot_num_ions="42" calc_neutral_pep_mass="1015.91629342" massdiff="-0.0105023050000455" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="hypothetical protein b3487 [Escherichia coli K12]">
|
|
489
|
+
<modification_info modified_peptide="TVETS[167]DER">
|
|
490
|
+
<mod_aminoacid_mass position="5" mass="167.0581"/>
|
|
491
|
+
</modification_info>
|
|
492
|
+
<search_score name="xcorr" value="0.695196807384491"/>
|
|
493
|
+
<search_score name="deltacn" value="0.263394951820374"/>
|
|
494
|
+
<search_score name="deltacnstar" value="0"/>
|
|
495
|
+
<search_score name="spscore" value="105.548156738281"/>
|
|
496
|
+
<search_score name="sprank" value="1"/>
|
|
497
|
+
<analysis_result analysis="peptideprophet">
|
|
498
|
+
<peptideprophet_result probability="0.05621524" all_ntt_prob="(0.0000,0.0000,0.0562)">
|
|
499
|
+
<search_score_summary>
|
|
500
|
+
<parameter name="fval" value="-0.1293"/>
|
|
501
|
+
<parameter name="ntt" value="2"/>
|
|
502
|
+
<parameter name="nmc" value="0"/>
|
|
503
|
+
<parameter name="massd" value="-0.011"/>
|
|
504
|
+
</search_score_summary>
|
|
505
|
+
</peptideprophet_result>
|
|
506
|
+
</analysis_result>
|
|
507
|
+
</search_hit>
|
|
508
|
+
</search_result>
|
|
509
|
+
</spectrum_query>
|
|
510
|
+
<spectrum_query spectrum="020.210.210.3" start_scan="210" end_scan="210" precursor_neutral_mass="977.813811134531" assumed_charge="3" index="9">
|
|
511
|
+
<search_result>
|
|
512
|
+
<search_hit hit_rank="1" peptide="VNGGSTQR" peptide_prev_aa="R" peptide_next_aa="K" protein="gi|16129784|ref|NP_416344.1|" num_tot_proteins="1" num_matched_ions="8" tot_num_ions="56" calc_neutral_pep_mass="977.81090142" massdiff="+0.00290971453125621" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="carboxy-terminal protease for penicillin-binding protein 3 [Escherichia coli K12]">
|
|
513
|
+
<modification_info modified_peptide="VNGGS[167]TQ[181]R">
|
|
514
|
+
<mod_aminoacid_mass position="5" mass="167.0581"/>
|
|
515
|
+
<mod_aminoacid_mass position="7" mass="181.085"/>
|
|
516
|
+
</modification_info>
|
|
517
|
+
<search_score name="xcorr" value="0.344329476356506"/>
|
|
518
|
+
<search_score name="deltacn" value="0.82324880361557"/>
|
|
519
|
+
<search_score name="deltacnstar" value="0"/>
|
|
520
|
+
<search_score name="spscore" value="57.4015884399414"/>
|
|
521
|
+
<search_score name="sprank" value="4"/>
|
|
522
|
+
<analysis_result analysis="peptideprophet">
|
|
523
|
+
<peptideprophet_result probability="0.83586426" all_ntt_prob="(0.0000,0.0000,0.8359)">
|
|
524
|
+
<search_score_summary>
|
|
525
|
+
<parameter name="fval" value="3.7233"/>
|
|
526
|
+
<parameter name="ntt" value="2"/>
|
|
527
|
+
<parameter name="nmc" value="0"/>
|
|
528
|
+
<parameter name="massd" value="0.003"/>
|
|
529
|
+
</search_score_summary>
|
|
530
|
+
</peptideprophet_result>
|
|
531
|
+
</analysis_result>
|
|
532
|
+
</search_hit>
|
|
533
|
+
</search_result>
|
|
534
|
+
</spectrum_query>
|
|
535
|
+
<spectrum_query spectrum="020.228.228.3" start_scan="228" end_scan="228" precursor_neutral_mass="903.86721689625" assumed_charge="3" index="10">
|
|
536
|
+
<search_result>
|
|
537
|
+
<search_hit hit_rank="1" peptide="TPVHNTR" peptide_prev_aa="K" peptide_next_aa="-" protein="gi|16130577|ref|NP_417149.1|" num_tot_proteins="1" num_matched_ions="7" tot_num_ions="36" calc_neutral_pep_mass="903.88037542" massdiff="-0.0131585237500076" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="gamma-aminobutyrate transport protein, RpoS-dependent (APC family) [Escherichia coli K12]">
|
|
538
|
+
<modification_info modified_peptide="T[181]PVHNTR">
|
|
539
|
+
<mod_aminoacid_mass position="1" mass="181.085"/>
|
|
540
|
+
</modification_info>
|
|
541
|
+
<search_score name="xcorr" value="0.582937955856323"/>
|
|
542
|
+
<search_score name="deltacn" value="0.484805673360825"/>
|
|
543
|
+
<search_score name="deltacnstar" value="0"/>
|
|
544
|
+
<search_score name="spscore" value="111.365089416504"/>
|
|
545
|
+
<search_score name="sprank" value="2"/>
|
|
546
|
+
<analysis_result analysis="peptideprophet">
|
|
547
|
+
<peptideprophet_result probability="0.34234940" all_ntt_prob="(0.0000,0.0000,0.3423)">
|
|
548
|
+
<search_score_summary>
|
|
549
|
+
<parameter name="fval" value="1.6114"/>
|
|
550
|
+
<parameter name="ntt" value="2"/>
|
|
551
|
+
<parameter name="nmc" value="0"/>
|
|
552
|
+
<parameter name="massd" value="-0.013"/>
|
|
553
|
+
</search_score_summary>
|
|
554
|
+
</peptideprophet_result>
|
|
555
|
+
</analysis_result>
|
|
556
|
+
</search_hit>
|
|
557
|
+
</search_result>
|
|
558
|
+
</spectrum_query>
|
|
559
|
+
<spectrum_query spectrum="020.280.280.2" start_scan="280" end_scan="280" precursor_neutral_mass="789.701031612188" assumed_charge="2" index="11">
|
|
560
|
+
<search_result>
|
|
561
|
+
<search_hit hit_rank="1" peptide="SSSSTNK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|90111655|ref|NP_418298.4|" num_tot_proteins="1" num_matched_ions="4" tot_num_ions="18" calc_neutral_pep_mass="789.68607542" massdiff="+0.0149561921874692" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="putative GTP-binding protein [Escherichia coli K12]">
|
|
562
|
+
<modification_info modified_peptide="S[167]SSSTNK">
|
|
563
|
+
<mod_aminoacid_mass position="1" mass="167.0581"/>
|
|
564
|
+
</modification_info>
|
|
565
|
+
<search_score name="xcorr" value="0.543601095676422"/>
|
|
566
|
+
<search_score name="deltacn" value="0.520685315132141"/>
|
|
567
|
+
<search_score name="deltacnstar" value="0"/>
|
|
568
|
+
<search_score name="spscore" value="26.5204181671143"/>
|
|
569
|
+
<search_score name="sprank" value="3"/>
|
|
570
|
+
<analysis_result analysis="peptideprophet">
|
|
571
|
+
<peptideprophet_result probability="0.08176422" all_ntt_prob="(0.0000,0.0000,0.0818)">
|
|
572
|
+
<search_score_summary>
|
|
573
|
+
<parameter name="fval" value="-0.0548"/>
|
|
574
|
+
<parameter name="ntt" value="2"/>
|
|
575
|
+
<parameter name="nmc" value="0"/>
|
|
576
|
+
<parameter name="massd" value="0.015"/>
|
|
577
|
+
</search_score_summary>
|
|
578
|
+
</peptideprophet_result>
|
|
579
|
+
</analysis_result>
|
|
580
|
+
</search_hit>
|
|
581
|
+
</search_result>
|
|
582
|
+
</spectrum_query>
|
|
583
|
+
<spectrum_query spectrum="020.290.290.3" start_scan="290" end_scan="290" precursor_neutral_mass="1775.8579395525" assumed_charge="3" index="12">
|
|
584
|
+
<search_result>
|
|
585
|
+
<search_hit hit_rank="1" peptide="KEDGASKNTSMTSVLK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|16131714|ref|NP_418310.1|" num_tot_proteins="1" num_matched_ions="11" tot_num_ions="90" calc_neutral_pep_mass="1775.87765042" massdiff="-0.0197108675004074" num_tol_term="2" num_missed_cleavages="2" is_rejected="0" protein_descr="putative resistance protein (transport) [Escherichia coli K12]">
|
|
586
|
+
<modification_info modified_peptide="KEDGAS[167]KNTSMTSVLK">
|
|
587
|
+
<mod_aminoacid_mass position="6" mass="167.0581"/>
|
|
588
|
+
</modification_info>
|
|
589
|
+
<search_score name="xcorr" value="0.71731048822403"/>
|
|
590
|
+
<search_score name="deltacn" value="0.346047312021255"/>
|
|
591
|
+
<search_score name="deltacnstar" value="0"/>
|
|
592
|
+
<search_score name="spscore" value="71.4732513427734"/>
|
|
593
|
+
<search_score name="sprank" value="43"/>
|
|
594
|
+
<analysis_result analysis="peptideprophet">
|
|
595
|
+
<peptideprophet_result probability="0.09169276" all_ntt_prob="(0.0000,0.0000,0.0917)">
|
|
596
|
+
<search_score_summary>
|
|
597
|
+
<parameter name="fval" value="0.2904"/>
|
|
598
|
+
<parameter name="ntt" value="2"/>
|
|
599
|
+
<parameter name="nmc" value="1"/>
|
|
600
|
+
<parameter name="massd" value="-0.020"/>
|
|
601
|
+
</search_score_summary>
|
|
602
|
+
</peptideprophet_result>
|
|
603
|
+
</analysis_result>
|
|
604
|
+
</search_hit>
|
|
605
|
+
</search_result>
|
|
606
|
+
</spectrum_query>
|
|
607
|
+
<spectrum_query spectrum="020.292.292.3" start_scan="292" end_scan="292" precursor_neutral_mass="1029.88882334156" assumed_charge="3" index="13">
|
|
608
|
+
<search_result>
|
|
609
|
+
<search_hit hit_rank="1" peptide="ESDSLEDR" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|16128320|ref|NP_414869.1|" num_tot_proteins="1" num_matched_ions="11" tot_num_ions="42" calc_neutral_pep_mass="1029.89982942" massdiff="-0.0110060784375037" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="putative acetyl-CoA synthetase of the propionate catabolism operon [Escherichia coli K12]">
|
|
610
|
+
<modification_info modified_peptide="ESDS[167]LEDR">
|
|
611
|
+
<mod_aminoacid_mass position="4" mass="167.0581"/>
|
|
612
|
+
</modification_info>
|
|
613
|
+
<search_score name="xcorr" value="0.324827522039413"/>
|
|
614
|
+
<search_score name="deltacn" value="0.705897331237793"/>
|
|
615
|
+
<search_score name="deltacnstar" value="0"/>
|
|
616
|
+
<search_score name="spscore" value="106.849151611328"/>
|
|
617
|
+
<search_score name="sprank" value="1"/>
|
|
618
|
+
<analysis_result analysis="peptideprophet">
|
|
619
|
+
<peptideprophet_result probability="0.59508077" all_ntt_prob="(0.0000,0.0000,0.5951)">
|
|
620
|
+
<search_score_summary>
|
|
621
|
+
<parameter name="fval" value="2.5088"/>
|
|
622
|
+
<parameter name="ntt" value="2"/>
|
|
623
|
+
<parameter name="nmc" value="0"/>
|
|
624
|
+
<parameter name="massd" value="-0.011"/>
|
|
625
|
+
</search_score_summary>
|
|
626
|
+
</peptideprophet_result>
|
|
627
|
+
</analysis_result>
|
|
628
|
+
</search_hit>
|
|
629
|
+
</search_result>
|
|
630
|
+
</spectrum_query>
|
|
631
|
+
<spectrum_query spectrum="020.294.294.3" start_scan="294" end_scan="294" precursor_neutral_mass="913.180876564219" assumed_charge="3" index="14">
|
|
632
|
+
<search_result>
|
|
633
|
+
<search_hit hit_rank="1" peptide="MFGKKMR" peptide_prev_aa="R" peptide_next_aa="H" protein="gi|16130783|ref|NP_417357.1|" num_tot_proteins="1" num_matched_ions="6" tot_num_ions="24" calc_neutral_pep_mass="913.16718242" massdiff="+0.0136941442189027" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="possible hypoxanthine oxidase [Escherichia coli K12]">
|
|
634
|
+
<modification_info modified_peptide="M[147]FGKKMR">
|
|
635
|
+
<mod_aminoacid_mass position="1" mass="147.192"/>
|
|
636
|
+
</modification_info>
|
|
637
|
+
<search_score name="xcorr" value="0.792168140411377"/>
|
|
638
|
+
<search_score name="deltacn" value="0.886182427406311"/>
|
|
639
|
+
<search_score name="deltacnstar" value="0"/>
|
|
640
|
+
<search_score name="spscore" value="99.004280090332"/>
|
|
641
|
+
<search_score name="sprank" value="1"/>
|
|
642
|
+
<analysis_result analysis="peptideprophet">
|
|
643
|
+
<peptideprophet_result probability="1.00000000" all_ntt_prob="(0.0000,0.0000,1.0000)">
|
|
644
|
+
<search_score_summary>
|
|
645
|
+
<parameter name="fval" value="7.2590"/>
|
|
646
|
+
<parameter name="ntt" value="2"/>
|
|
647
|
+
<parameter name="nmc" value="1"/>
|
|
648
|
+
<parameter name="massd" value="0.014"/>
|
|
649
|
+
</search_score_summary>
|
|
650
|
+
</peptideprophet_result>
|
|
651
|
+
</analysis_result>
|
|
652
|
+
</search_hit>
|
|
653
|
+
</search_result>
|
|
654
|
+
</spectrum_query>
|
|
655
|
+
<spectrum_query spectrum="020.295.295.3" start_scan="295" end_scan="295" precursor_neutral_mass="1022.85043222828" assumed_charge="3" index="15">
|
|
656
|
+
<search_result>
|
|
657
|
+
<search_hit hit_rank="1" peptide="DKAGTDTR" peptide_prev_aa="K" peptide_next_aa="F" protein="gi|16129247|ref|NP_415802.1|" num_tot_proteins="1" num_matched_ions="13" tot_num_ions="56" calc_neutral_pep_mass="1022.84844242" massdiff="+0.00198980828133699" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="exoribonuclease II [Escherichia coli K12]">
|
|
658
|
+
<modification_info modified_peptide="DKAGT[181]DTR[181]">
|
|
659
|
+
<mod_aminoacid_mass position="5" mass="181.085"/>
|
|
660
|
+
<mod_aminoacid_mass position="8" mass="181.085"/>
|
|
661
|
+
</modification_info>
|
|
662
|
+
<search_score name="xcorr" value="0.570928752422333"/>
|
|
663
|
+
<search_score name="deltacn" value="0.741859972476959"/>
|
|
664
|
+
<search_score name="deltacnstar" value="0"/>
|
|
665
|
+
<search_score name="spscore" value="189.744049072266"/>
|
|
666
|
+
<search_score name="sprank" value="1"/>
|
|
667
|
+
<analysis_result analysis="peptideprophet">
|
|
668
|
+
<peptideprophet_result probability="0.91871789" all_ntt_prob="(0.0000,0.0000,0.9187)">
|
|
669
|
+
<search_score_summary>
|
|
670
|
+
<parameter name="fval" value="4.6526"/>
|
|
671
|
+
<parameter name="ntt" value="2"/>
|
|
672
|
+
<parameter name="nmc" value="1"/>
|
|
673
|
+
<parameter name="massd" value="0.002"/>
|
|
674
|
+
</search_score_summary>
|
|
675
|
+
</peptideprophet_result>
|
|
676
|
+
</analysis_result>
|
|
677
|
+
</search_hit>
|
|
678
|
+
</search_result>
|
|
679
|
+
</spectrum_query>
|
|
680
|
+
<spectrum_query spectrum="020.299.299.2" start_scan="299" end_scan="299" precursor_neutral_mass="1851.2031068075" assumed_charge="2" index="16">
|
|
681
|
+
<search_result>
|
|
682
|
+
<search_hit hit_rank="1" peptide="IVPLIAYMSKFFTLK" peptide_prev_aa="K" peptide_next_aa="A" protein="gi|16129143|ref|NP_415698.1|" num_tot_proteins="1" num_matched_ions="4" tot_num_ions="42" calc_neutral_pep_mass="1851.20196942" massdiff="+0.00113738749996628" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="putative isomerase [Escherichia coli K12]">
|
|
683
|
+
<modification_info modified_peptide="IVPLIAY[243]MSKFFTLK">
|
|
684
|
+
<mod_aminoacid_mass position="7" mass="243.1559"/>
|
|
685
|
+
</modification_info>
|
|
686
|
+
<search_score name="xcorr" value="0.68244069814682"/>
|
|
687
|
+
<search_score name="deltacn" value="0.688492655754089"/>
|
|
688
|
+
<search_score name="deltacnstar" value="0"/>
|
|
689
|
+
<search_score name="spscore" value="20.3025856018066"/>
|
|
690
|
+
<search_score name="sprank" value="1"/>
|
|
691
|
+
<analysis_result analysis="peptideprophet">
|
|
692
|
+
<peptideprophet_result probability="0.60240568" all_ntt_prob="(0.0000,0.0000,0.6024)">
|
|
693
|
+
<search_score_summary>
|
|
694
|
+
<parameter name="fval" value="2.4950"/>
|
|
695
|
+
<parameter name="ntt" value="2"/>
|
|
696
|
+
<parameter name="nmc" value="1"/>
|
|
697
|
+
<parameter name="massd" value="0.001"/>
|
|
698
|
+
</search_score_summary>
|
|
699
|
+
</peptideprophet_result>
|
|
700
|
+
</analysis_result>
|
|
701
|
+
</search_hit>
|
|
702
|
+
</search_result>
|
|
703
|
+
</spectrum_query>
|
|
704
|
+
<spectrum_query spectrum="020.319.319.2" start_scan="319" end_scan="319" precursor_neutral_mass="701.73191540125" assumed_charge="2" index="17">
|
|
705
|
+
<search_result>
|
|
706
|
+
<search_hit hit_rank="1" peptide="MATATK" peptide_prev_aa="K" peptide_next_aa="T" protein="gi|16129160|ref|NP_415715.1|" num_tot_proteins="1" num_matched_ions="3" tot_num_ions="15" calc_neutral_pep_mass="701.73020542" massdiff="+0.00170998124997368" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="trehalase, periplasmic [Escherichia coli K12]">
|
|
707
|
+
<modification_info modified_peptide="MAT[181]ATK">
|
|
708
|
+
<mod_aminoacid_mass position="3" mass="181.085"/>
|
|
709
|
+
</modification_info>
|
|
710
|
+
<search_score name="xcorr" value="0.471073925495148"/>
|
|
711
|
+
<search_score name="deltacn" value="0.653317809104919"/>
|
|
712
|
+
<search_score name="deltacnstar" value="0"/>
|
|
713
|
+
<search_score name="spscore" value="8.99399089813232"/>
|
|
714
|
+
<search_score name="sprank" value="10"/>
|
|
715
|
+
<analysis_result analysis="peptideprophet">
|
|
716
|
+
<peptideprophet_result probability="0.08904475" all_ntt_prob="(0.0000,0.0000,0.0890)">
|
|
717
|
+
<search_score_summary>
|
|
718
|
+
<parameter name="fval" value="0.0069"/>
|
|
719
|
+
<parameter name="ntt" value="2"/>
|
|
720
|
+
<parameter name="nmc" value="0"/>
|
|
721
|
+
<parameter name="massd" value="0.002"/>
|
|
722
|
+
</search_score_summary>
|
|
723
|
+
</peptideprophet_result>
|
|
724
|
+
</analysis_result>
|
|
725
|
+
</search_hit>
|
|
726
|
+
</search_result>
|
|
727
|
+
</spectrum_query>
|
|
728
|
+
<spectrum_query spectrum="020.344.344.3" start_scan="344" end_scan="344" precursor_neutral_mass="1447.6040333025" assumed_charge="3" index="18">
|
|
729
|
+
<search_result>
|
|
730
|
+
<search_hit hit_rank="1" peptide="VAALRVPGGASLTR" peptide_prev_aa="R" peptide_next_aa="K" protein="gi|16129819|ref|NP_416380.1|" num_tot_proteins="1" num_matched_ions="16" tot_num_ions="78" calc_neutral_pep_mass="1447.58289842" massdiff="+0.0211348825000641" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="aspartyl-tRNA synthetase [Escherichia coli K12]">
|
|
731
|
+
<modification_info modified_peptide="VAALRVPGGAS[167]LTR">
|
|
732
|
+
<mod_aminoacid_mass position="11" mass="167.0581"/>
|
|
733
|
+
</modification_info>
|
|
734
|
+
<search_score name="xcorr" value="1.3090912103653"/>
|
|
735
|
+
<search_score name="deltacn" value="0.259967535734177"/>
|
|
736
|
+
<search_score name="deltacnstar" value="0"/>
|
|
737
|
+
<search_score name="spscore" value="118.513412475586"/>
|
|
738
|
+
<search_score name="sprank" value="4"/>
|
|
739
|
+
<analysis_result analysis="peptideprophet">
|
|
740
|
+
<peptideprophet_result probability="0.27738378" all_ntt_prob="(0.0000,0.0000,0.2774)">
|
|
741
|
+
<search_score_summary>
|
|
742
|
+
<parameter name="fval" value="1.3810"/>
|
|
743
|
+
<parameter name="ntt" value="2"/>
|
|
744
|
+
<parameter name="nmc" value="1"/>
|
|
745
|
+
<parameter name="massd" value="0.021"/>
|
|
746
|
+
</search_score_summary>
|
|
747
|
+
</peptideprophet_result>
|
|
748
|
+
</analysis_result>
|
|
749
|
+
</search_hit>
|
|
750
|
+
</search_result>
|
|
751
|
+
</spectrum_query>
|
|
752
|
+
</msms_run_summary>
|
|
753
|
+
</msms_pipeline_analysis>
|