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,3807 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE msms_pipeline_analysis SYSTEM "/usr/bin/msms_analysis3.dtd">
|
|
3
|
+
<?xml-stylesheet type="text/xsl" href="/var/www/html/isb/yeast_gly.xsl"?>
|
|
4
|
+
<?xml-stylesheet type="text/xsl" href="/isb/std_xsl/pepXML_std.xsl"?>
|
|
5
|
+
<msms_pipeline_analysis date="Tue Dec 6 21:02:30 2005" summary_xml="/var/www/html/isb/yeast_gly.xml">
|
|
6
|
+
<peptideprophet_summary version="PeptideProphet v3.0 April 1, 2004" author="AKeller@ISB" inputfiles="/work/john/align/yeast/gly/summary/005a /work/john/align/yeast/gly/summary/005b /work/john/align/yeast/gly/summary/005c /work/john/align/yeast/gly/summary/020a /work/john/align/yeast/gly/summary/020b /work/john/align/yeast/gly/summary/020c /work/john/align/yeast/gly/summary/060a /work/john/align/yeast/gly/summary/060b /work/john/align/yeast/gly/summary/060c /work/john/align/yeast/gly/summary/900a /work/john/align/yeast/gly/summary/900b /work/john/align/yeast/gly/summary/900c" min_prob="0.05" options=" " est_tot_num_correct="2435.7">
|
|
7
|
+
<peptideprophet_timestamp time="Tue Dec 6 21:51:15 2005"/>
|
|
8
|
+
<roc_data_point min_prob="0.99" sensitivity="0.3569" error="0.0027" num_corr="859" num_incorr="2"/>
|
|
9
|
+
<roc_data_point min_prob="0.98" sensitivity="0.4332" error="0.0048" num_corr="1042" num_incorr="5"/>
|
|
10
|
+
<roc_data_point min_prob="0.95" sensitivity="0.5232" error="0.0098" num_corr="1258" num_incorr="13"/>
|
|
11
|
+
<roc_data_point min_prob="0.90" sensitivity="0.5918" error="0.0175" num_corr="1424" num_incorr="25"/>
|
|
12
|
+
<roc_data_point min_prob="0.85" sensitivity="0.6355" error="0.0256" num_corr="1529" num_incorr="40"/>
|
|
13
|
+
<roc_data_point min_prob="0.80" sensitivity="0.6754" error="0.0358" num_corr="1625" num_incorr="60"/>
|
|
14
|
+
<roc_data_point min_prob="0.75" sensitivity="0.7012" error="0.0443" num_corr="1687" num_incorr="78"/>
|
|
15
|
+
<roc_data_point min_prob="0.70" sensitivity="0.7202" error="0.0522" num_corr="1733" num_incorr="95"/>
|
|
16
|
+
<roc_data_point min_prob="0.65" sensitivity="0.7396" error="0.0621" num_corr="1779" num_incorr="118"/>
|
|
17
|
+
<roc_data_point min_prob="0.60" sensitivity="0.7526" error="0.0702" num_corr="1810" num_incorr="137"/>
|
|
18
|
+
<roc_data_point min_prob="0.55" sensitivity="0.7678" error="0.0815" num_corr="1847" num_incorr="164"/>
|
|
19
|
+
<roc_data_point min_prob="0.50" sensitivity="0.7829" error="0.0946" num_corr="1883" num_incorr="197"/>
|
|
20
|
+
<roc_data_point min_prob="0.45" sensitivity="0.8000" error="0.1120" num_corr="1924" num_incorr="243"/>
|
|
21
|
+
<roc_data_point min_prob="0.40" sensitivity="0.8156" error="0.1300" num_corr="1962" num_incorr="293"/>
|
|
22
|
+
<roc_data_point min_prob="0.35" sensitivity="0.8315" error="0.1517" num_corr="2000" num_incorr="358"/>
|
|
23
|
+
<roc_data_point min_prob="0.30" sensitivity="0.8465" error="0.1752" num_corr="2036" num_incorr="433"/>
|
|
24
|
+
<roc_data_point min_prob="0.25" sensitivity="0.8592" error="0.1992" num_corr="2067" num_incorr="514"/>
|
|
25
|
+
<roc_data_point min_prob="0.20" sensitivity="0.8738" error="0.2323" num_corr="2102" num_incorr="636"/>
|
|
26
|
+
<roc_data_point min_prob="0.15" sensitivity="0.8914" error="0.2807" num_corr="2144" num_incorr="837"/>
|
|
27
|
+
<roc_data_point min_prob="0.10" sensitivity="0.9102" error="0.3478" num_corr="2190" num_incorr="1167"/>
|
|
28
|
+
<roc_data_point min_prob="0.05" sensitivity="0.9363" error="0.4697" num_corr="2252" num_incorr="1995"/>
|
|
29
|
+
<roc_data_point min_prob="0.00" sensitivity="1.0000" error="0.9675" num_corr="2406" num_incorr="71643"/>
|
|
30
|
+
<error_point error="0.000" min_prob="1.00" num_corr="2" num_incorr="0"/>
|
|
31
|
+
<error_point error="0.010" min_prob="0.95" num_corr="1264" num_incorr="13"/>
|
|
32
|
+
<error_point error="0.020" min_prob="0.88" num_corr="1462" num_incorr="30"/>
|
|
33
|
+
<error_point error="0.025" min_prob="0.85" num_corr="1524" num_incorr="39"/>
|
|
34
|
+
<error_point error="0.030" min_prob="0.83" num_corr="1575" num_incorr="49"/>
|
|
35
|
+
<error_point error="0.040" min_prob="0.77" num_corr="1658" num_incorr="69"/>
|
|
36
|
+
<error_point error="0.050" min_prob="0.72" num_corr="1721" num_incorr="91"/>
|
|
37
|
+
<error_point error="0.075" min_prob="0.57" num_corr="1827" num_incorr="149"/>
|
|
38
|
+
<error_point error="0.100" min_prob="0.48" num_corr="1897" num_incorr="212"/>
|
|
39
|
+
<distribution_point fvalue="-4.90" obs_1_distr="11" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="3" model_2_pos_distr="0.00" model_2_neg_distr="0.00" obs_3_distr="0" model_3_pos_distr="0.01" model_3_neg_distr="0.00"/>
|
|
40
|
+
<distribution_point fvalue="-4.70" obs_1_distr="9" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="11" model_2_pos_distr="0.00" model_2_neg_distr="0.00" obs_3_distr="0" model_3_pos_distr="0.01" model_3_neg_distr="0.00"/>
|
|
41
|
+
<distribution_point fvalue="-4.50" obs_1_distr="22" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="12" model_2_pos_distr="0.00" model_2_neg_distr="0.00" obs_3_distr="1" model_3_pos_distr="0.02" model_3_neg_distr="0.00"/>
|
|
42
|
+
<distribution_point fvalue="-4.30" obs_1_distr="21" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="24" model_2_pos_distr="0.00" model_2_neg_distr="0.04" obs_3_distr="1" model_3_pos_distr="0.03" model_3_neg_distr="0.00"/>
|
|
43
|
+
<distribution_point fvalue="-4.10" obs_1_distr="27" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="39" model_2_pos_distr="0.00" model_2_neg_distr="0.42" obs_3_distr="1" model_3_pos_distr="0.04" model_3_neg_distr="0.01"/>
|
|
44
|
+
<distribution_point fvalue="-3.90" obs_1_distr="39" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="43" model_2_pos_distr="0.00" model_2_neg_distr="2.61" obs_3_distr="8" model_3_pos_distr="0.05" model_3_neg_distr="0.13"/>
|
|
45
|
+
<distribution_point fvalue="-3.70" obs_1_distr="41" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="80" model_2_pos_distr="0.00" model_2_neg_distr="10.94" obs_3_distr="19" model_3_pos_distr="0.07" model_3_neg_distr="1.11"/>
|
|
46
|
+
<distribution_point fvalue="-3.50" obs_1_distr="47" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="102" model_2_pos_distr="0.00" model_2_neg_distr="34.35" obs_3_distr="36" model_3_pos_distr="0.09" model_3_neg_distr="5.60"/>
|
|
47
|
+
<distribution_point fvalue="-3.30" obs_1_distr="43" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="165" model_2_pos_distr="0.00" model_2_neg_distr="86.59" obs_3_distr="40" model_3_pos_distr="0.12" model_3_neg_distr="19.95"/>
|
|
48
|
+
<distribution_point fvalue="-3.10" obs_1_distr="53" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="235" model_2_pos_distr="0.00" model_2_neg_distr="183.86" obs_3_distr="71" model_3_pos_distr="0.16" model_3_neg_distr="54.98"/>
|
|
49
|
+
<distribution_point fvalue="-2.90" obs_1_distr="55" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="318" model_2_pos_distr="0.01" model_2_neg_distr="340.00" obs_3_distr="126" model_3_pos_distr="0.21" model_3_neg_distr="124.67"/>
|
|
50
|
+
<distribution_point fvalue="-2.70" obs_1_distr="61" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="444" model_2_pos_distr="0.01" model_2_neg_distr="561.24" obs_3_distr="189" model_3_pos_distr="0.28" model_3_neg_distr="242.67"/>
|
|
51
|
+
<distribution_point fvalue="-2.50" obs_1_distr="61" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="602" model_2_pos_distr="0.01" model_2_neg_distr="842.52" obs_3_distr="306" model_3_pos_distr="0.36" model_3_neg_distr="417.74"/>
|
|
52
|
+
<distribution_point fvalue="-2.30" obs_1_distr="59" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="877" model_2_pos_distr="0.02" model_2_neg_distr="1166.92" obs_3_distr="461" model_3_pos_distr="0.46" model_3_neg_distr="650.05"/>
|
|
53
|
+
<distribution_point fvalue="-2.10" obs_1_distr="66" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="1222" model_2_pos_distr="0.04" model_2_neg_distr="1508.26" obs_3_distr="744" model_3_pos_distr="0.59" model_3_neg_distr="929.68"/>
|
|
54
|
+
<distribution_point fvalue="-1.90" obs_1_distr="50" model_1_pos_distr="0.00" model_1_neg_distr="22.62" obs_2_distr="1720" model_2_pos_distr="0.05" model_2_neg_distr="1835.90" obs_3_distr="1046" model_3_pos_distr="0.76" model_3_neg_distr="1237.76"/>
|
|
55
|
+
<distribution_point fvalue="-1.70" obs_1_distr="60" model_1_pos_distr="0.00" model_1_neg_distr="53.68" obs_2_distr="2017" model_2_pos_distr="0.08" model_2_neg_distr="2120.27" obs_3_distr="1478" model_3_pos_distr="0.95" model_3_neg_distr="1549.69"/>
|
|
56
|
+
<distribution_point fvalue="-1.50" obs_1_distr="70" model_1_pos_distr="0.00" model_1_neg_distr="68.01" obs_2_distr="2446" model_2_pos_distr="0.12" model_2_neg_distr="2337.60" obs_3_distr="2038" model_3_pos_distr="1.20" model_3_neg_distr="1839.44"/>
|
|
57
|
+
<distribution_point fvalue="-1.30" obs_1_distr="56" model_1_pos_distr="0.00" model_1_neg_distr="71.76" obs_2_distr="2617" model_2_pos_distr="0.18" model_2_neg_distr="2472.94" obs_3_distr="2268" model_3_pos_distr="1.49" model_3_neg_distr="2083.68"/>
|
|
58
|
+
<distribution_point fvalue="-1.10" obs_1_distr="55" model_1_pos_distr="0.00" model_1_neg_distr="69.28" obs_2_distr="2718" model_2_pos_distr="0.26" model_2_neg_distr="2521.17" obs_3_distr="2593" model_3_pos_distr="1.84" model_3_neg_distr="2264.92"/>
|
|
59
|
+
<distribution_point fvalue="-0.90" obs_1_distr="45" model_1_pos_distr="0.00" model_1_neg_distr="63.45" obs_2_distr="2672" model_2_pos_distr="0.38" model_2_neg_distr="2486.18" obs_3_distr="2682" model_3_pos_distr="2.26" model_3_neg_distr="2373.17"/>
|
|
60
|
+
<distribution_point fvalue="-0.70" obs_1_distr="33" model_1_pos_distr="0.00" model_1_neg_distr="56.12" obs_2_distr="2493" model_2_pos_distr="0.54" model_2_neg_distr="2378.89" obs_3_distr="2680" model_3_pos_distr="2.75" model_3_neg_distr="2406.19"/>
|
|
61
|
+
<distribution_point fvalue="-0.50" obs_1_distr="52" model_1_pos_distr="0.00" model_1_neg_distr="48.42" obs_2_distr="2411" model_2_pos_distr="0.75" model_2_neg_distr="2214.71" obs_3_distr="2520" model_3_pos_distr="3.33" model_3_neg_distr="2368.52"/>
|
|
62
|
+
<distribution_point fvalue="-0.30" obs_1_distr="38" model_1_pos_distr="0.00" model_1_neg_distr="41.01" obs_2_distr="2092" model_2_pos_distr="1.04" model_2_neg_distr="2010.91" obs_3_distr="2184" model_3_pos_distr="4.00" model_3_neg_distr="2269.80"/>
|
|
63
|
+
<distribution_point fvalue="-0.10" obs_1_distr="44" model_1_pos_distr="0.00" model_1_neg_distr="34.24" obs_2_distr="1848" model_2_pos_distr="1.42" model_2_neg_distr="1784.43" obs_3_distr="2122" model_3_pos_distr="4.76" model_3_neg_distr="2122.83"/>
|
|
64
|
+
<distribution_point fvalue="0.10" obs_1_distr="27" model_1_pos_distr="0.00" model_1_neg_distr="28.25" obs_2_distr="1504" model_2_pos_distr="1.91" model_2_neg_distr="1550.38" obs_3_distr="1830" model_3_pos_distr="5.64" model_3_neg_distr="1941.69"/>
|
|
65
|
+
<distribution_point fvalue="0.30" obs_1_distr="32" model_1_pos_distr="0.00" model_1_neg_distr="23.10" obs_2_distr="1273" model_2_pos_distr="2.55" model_2_neg_distr="1321.02" obs_3_distr="1564" model_3_pos_distr="6.62" model_3_neg_distr="1740.13"/>
|
|
66
|
+
<distribution_point fvalue="0.50" obs_1_distr="22" model_1_pos_distr="0.00" model_1_neg_distr="18.73" obs_2_distr="1041" model_2_pos_distr="3.35" model_2_neg_distr="1105.46" obs_3_distr="1385" model_3_pos_distr="7.73" model_3_neg_distr="1530.48"/>
|
|
67
|
+
<distribution_point fvalue="0.70" obs_1_distr="24" model_1_pos_distr="0.00" model_1_neg_distr="15.10" obs_2_distr="862" model_2_pos_distr="4.36" model_2_neg_distr="909.69" obs_3_distr="1167" model_3_pos_distr="8.95" model_3_neg_distr="1322.95"/>
|
|
68
|
+
<distribution_point fvalue="0.90" obs_1_distr="20" model_1_pos_distr="0.00" model_1_neg_distr="12.09" obs_2_distr="684" model_2_pos_distr="5.59" model_2_neg_distr="737.00" obs_3_distr="1093" model_3_pos_distr="10.29" model_3_neg_distr="1125.35"/>
|
|
69
|
+
<distribution_point fvalue="1.10" obs_1_distr="13" model_1_pos_distr="0.00" model_1_neg_distr="9.64" obs_2_distr="629" model_2_pos_distr="7.09" model_2_neg_distr="588.45" obs_3_distr="894" model_3_pos_distr="11.75" model_3_neg_distr="943.09"/>
|
|
70
|
+
<distribution_point fvalue="1.30" obs_1_distr="6" model_1_pos_distr="0.00" model_1_neg_distr="7.65" obs_2_distr="463" model_2_pos_distr="8.87" model_2_neg_distr="463.48" obs_3_distr="740" model_3_pos_distr="13.32" model_3_neg_distr="779.46"/>
|
|
71
|
+
<distribution_point fvalue="1.50" obs_1_distr="6" model_1_pos_distr="0.00" model_1_neg_distr="6.05" obs_2_distr="356" model_2_pos_distr="10.96" model_2_neg_distr="360.42" obs_3_distr="634" model_3_pos_distr="14.98" model_3_neg_distr="635.92"/>
|
|
72
|
+
<distribution_point fvalue="1.70" obs_1_distr="8" model_1_pos_distr="0.00" model_1_neg_distr="4.77" obs_2_distr="275" model_2_pos_distr="13.38" model_2_neg_distr="276.92" obs_3_distr="496" model_3_pos_distr="16.74" model_3_neg_distr="512.56"/>
|
|
73
|
+
<distribution_point fvalue="1.90" obs_1_distr="5" model_1_pos_distr="0.00" model_1_neg_distr="3.75" obs_2_distr="210" model_2_pos_distr="16.12" model_2_neg_distr="210.38" obs_3_distr="415" model_3_pos_distr="18.57" model_3_neg_distr="408.46"/>
|
|
74
|
+
<distribution_point fvalue="2.10" obs_1_distr="1" model_1_pos_distr="0.00" model_1_neg_distr="2.94" obs_2_distr="166" model_2_pos_distr="19.20" model_2_neg_distr="158.14" obs_3_distr="374" model_3_pos_distr="20.44" model_3_neg_distr="322.04"/>
|
|
75
|
+
<distribution_point fvalue="2.30" obs_1_distr="3" model_1_pos_distr="0.01" model_1_neg_distr="2.30" obs_2_distr="158" model_2_pos_distr="22.57" model_2_neg_distr="117.67" obs_3_distr="304" model_3_pos_distr="22.35" model_3_neg_distr="251.37"/>
|
|
76
|
+
<distribution_point fvalue="2.50" obs_1_distr="1" model_1_pos_distr="0.06" model_1_neg_distr="1.79" obs_2_distr="112" model_2_pos_distr="26.21" model_2_neg_distr="86.74" obs_3_distr="232" model_3_pos_distr="24.26" model_3_neg_distr="194.35"/>
|
|
77
|
+
<distribution_point fvalue="2.70" obs_1_distr="0" model_1_pos_distr="0.01" model_1_neg_distr="1.39" obs_2_distr="99" model_2_pos_distr="30.06" model_2_neg_distr="63.36" obs_3_distr="230" model_3_pos_distr="26.14" model_3_neg_distr="148.93"/>
|
|
78
|
+
<distribution_point fvalue="2.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="1.08" obs_2_distr="91" model_2_pos_distr="34.05" model_2_neg_distr="45.89" obs_3_distr="187" model_3_pos_distr="27.97" model_3_neg_distr="113.16"/>
|
|
79
|
+
<distribution_point fvalue="3.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.84" obs_2_distr="72" model_2_pos_distr="38.08" model_2_neg_distr="32.96" obs_3_distr="114" model_3_pos_distr="29.71" model_3_neg_distr="85.30"/>
|
|
80
|
+
<distribution_point fvalue="3.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.65" obs_2_distr="71" model_2_pos_distr="42.07" model_2_neg_distr="23.50" obs_3_distr="115" model_3_pos_distr="31.33" model_3_neg_distr="63.80"/>
|
|
81
|
+
<distribution_point fvalue="3.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.50" obs_2_distr="51" model_2_pos_distr="45.90" model_2_neg_distr="16.63" obs_3_distr="109" model_3_pos_distr="32.80" model_3_neg_distr="47.38"/>
|
|
82
|
+
<distribution_point fvalue="3.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.39" obs_2_distr="71" model_2_pos_distr="49.46" model_2_neg_distr="11.68" obs_3_distr="69" model_3_pos_distr="34.10" model_3_neg_distr="34.95"/>
|
|
83
|
+
<distribution_point fvalue="3.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.30" obs_2_distr="57" model_2_pos_distr="52.63" model_2_neg_distr="8.15" obs_3_distr="63" model_3_pos_distr="35.19" model_3_neg_distr="25.61"/>
|
|
84
|
+
<distribution_point fvalue="4.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.23" obs_2_distr="52" model_2_pos_distr="55.32" model_2_neg_distr="5.66" obs_3_distr="53" model_3_pos_distr="36.05" model_3_neg_distr="18.65"/>
|
|
85
|
+
<distribution_point fvalue="4.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.18" obs_2_distr="42" model_2_pos_distr="57.42" model_2_neg_distr="3.90" obs_3_distr="61" model_3_pos_distr="36.68" model_3_neg_distr="13.50"/>
|
|
86
|
+
<distribution_point fvalue="4.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.14" obs_2_distr="57" model_2_pos_distr="58.86" model_2_neg_distr="2.67" obs_3_distr="46" model_3_pos_distr="37.04" model_3_neg_distr="9.71"/>
|
|
87
|
+
<distribution_point fvalue="4.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.10" obs_2_distr="50" model_2_pos_distr="59.58" model_2_neg_distr="1.82" obs_3_distr="31" model_3_pos_distr="37.14" model_3_neg_distr="6.95"/>
|
|
88
|
+
<distribution_point fvalue="4.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.08" obs_2_distr="52" model_2_pos_distr="59.57" model_2_neg_distr="1.23" obs_3_distr="30" model_3_pos_distr="36.97" model_3_neg_distr="4.95"/>
|
|
89
|
+
<distribution_point fvalue="5.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.06" obs_2_distr="61" model_2_pos_distr="58.83" model_2_neg_distr="0.83" obs_3_distr="36" model_3_pos_distr="36.54" model_3_neg_distr="3.51"/>
|
|
90
|
+
<distribution_point fvalue="5.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.05" obs_2_distr="51" model_2_pos_distr="57.37" model_2_neg_distr="0.56" obs_3_distr="34" model_3_pos_distr="35.85" model_3_neg_distr="2.47"/>
|
|
91
|
+
<distribution_point fvalue="5.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.04" obs_2_distr="43" model_2_pos_distr="55.25" model_2_neg_distr="0.37" obs_3_distr="37" model_3_pos_distr="34.92" model_3_neg_distr="1.74"/>
|
|
92
|
+
<distribution_point fvalue="5.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.03" obs_2_distr="51" model_2_pos_distr="52.55" model_2_neg_distr="0.25" obs_3_distr="37" model_3_pos_distr="33.78" model_3_neg_distr="1.21"/>
|
|
93
|
+
<distribution_point fvalue="5.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.02" obs_2_distr="44" model_2_pos_distr="49.37" model_2_neg_distr="0.16" obs_3_distr="28" model_3_pos_distr="32.43" model_3_neg_distr="0.84"/>
|
|
94
|
+
<distribution_point fvalue="6.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.02" obs_2_distr="58" model_2_pos_distr="45.80" model_2_neg_distr="0.11" obs_3_distr="26" model_3_pos_distr="30.92" model_3_neg_distr="0.59"/>
|
|
95
|
+
<distribution_point fvalue="6.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="50" model_2_pos_distr="41.97" model_2_neg_distr="0.07" obs_3_distr="23" model_3_pos_distr="29.26" model_3_neg_distr="0.40"/>
|
|
96
|
+
<distribution_point fvalue="6.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="50" model_2_pos_distr="37.98" model_2_neg_distr="0.05" obs_3_distr="26" model_3_pos_distr="27.50" model_3_neg_distr="0.28"/>
|
|
97
|
+
<distribution_point fvalue="6.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="29" model_2_pos_distr="33.94" model_2_neg_distr="0.03" obs_3_distr="25" model_3_pos_distr="25.65" model_3_neg_distr="0.19"/>
|
|
98
|
+
<distribution_point fvalue="6.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.01" obs_2_distr="35" model_2_pos_distr="29.95" model_2_neg_distr="0.02" obs_3_distr="27" model_3_pos_distr="23.76" model_3_neg_distr="0.13"/>
|
|
99
|
+
<distribution_point fvalue="7.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="32" model_2_pos_distr="26.11" model_2_neg_distr="0.01" obs_3_distr="26" model_3_pos_distr="21.85" model_3_neg_distr="0.09"/>
|
|
100
|
+
<distribution_point fvalue="7.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="32" model_2_pos_distr="22.48" model_2_neg_distr="0.01" obs_3_distr="22" model_3_pos_distr="19.94" model_3_neg_distr="0.06"/>
|
|
101
|
+
<distribution_point fvalue="7.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="27" model_2_pos_distr="19.11" model_2_neg_distr="0.01" obs_3_distr="25" model_3_pos_distr="18.08" model_3_neg_distr="0.04"/>
|
|
102
|
+
<distribution_point fvalue="7.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="20" model_2_pos_distr="16.05" model_2_neg_distr="0.00" obs_3_distr="18" model_3_pos_distr="16.27" model_3_neg_distr="0.03"/>
|
|
103
|
+
<distribution_point fvalue="7.90" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="24" model_2_pos_distr="13.31" model_2_neg_distr="0.00" obs_3_distr="19" model_3_pos_distr="14.53" model_3_neg_distr="0.02"/>
|
|
104
|
+
<distribution_point fvalue="8.10" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="13" model_2_pos_distr="10.90" model_2_neg_distr="0.00" obs_3_distr="13" model_3_pos_distr="12.89" model_3_neg_distr="0.01"/>
|
|
105
|
+
<distribution_point fvalue="8.30" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="8" model_2_pos_distr="8.81" model_2_neg_distr="0.00" obs_3_distr="11" model_3_pos_distr="11.35" model_3_neg_distr="0.01"/>
|
|
106
|
+
<distribution_point fvalue="8.50" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="4" model_2_pos_distr="7.04" model_2_neg_distr="0.00" obs_3_distr="15" model_3_pos_distr="9.92" model_3_neg_distr="0.01"/>
|
|
107
|
+
<distribution_point fvalue="8.70" obs_1_distr="0" model_1_pos_distr="0.00" model_1_neg_distr="0.00" obs_2_distr="3" model_2_pos_distr="5.55" model_2_neg_distr="0.00" obs_3_distr="10" model_3_pos_distr="8.61" model_3_neg_distr="0.00"/>
|
|
108
|
+
<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="4.33" model_2_neg_distr="0.00" obs_3_distr="6" model_3_pos_distr="7.42" model_3_neg_distr="0.00"/>
|
|
109
|
+
<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="3.33" model_2_neg_distr="0.00" obs_3_distr="7" model_3_pos_distr="6.35" model_3_neg_distr="0.00"/>
|
|
110
|
+
<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="2.53" model_2_neg_distr="0.00" obs_3_distr="7" model_3_pos_distr="5.40" model_3_neg_distr="0.00"/>
|
|
111
|
+
<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="1.90" model_2_neg_distr="0.00" obs_3_distr="4" model_3_pos_distr="4.55" model_3_neg_distr="0.00"/>
|
|
112
|
+
<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="1.41" model_2_neg_distr="0.00" obs_3_distr="5" model_3_pos_distr="3.81" model_3_neg_distr="0.00"/>
|
|
113
|
+
<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="1.03" model_2_neg_distr="0.00" obs_3_distr="3" model_3_pos_distr="3.17" model_3_neg_distr="0.00"/>
|
|
114
|
+
<mixture_model precursor_ion_charge="1" comments="using training data negative distributions" prior_probability="0.000" est_tot_correct="0.1" tot_num_spectra="1346" num_iterations="26">
|
|
115
|
+
<mixturemodel_distribution name="SEQUEST discrim score [fval] negmean: 0.88">
|
|
116
|
+
<posmodel_distribution type="gaussian">
|
|
117
|
+
<parameter name="mean" value="2.50"/>
|
|
118
|
+
<parameter name="stdev" value="0.07"/>
|
|
119
|
+
</posmodel_distribution>
|
|
120
|
+
<negmodel_distribution type="gamma">
|
|
121
|
+
<parameter name="m1" value="1.37"/>
|
|
122
|
+
<parameter name="m2" value="2.82"/>
|
|
123
|
+
<parameter name="alpha" value="0.68"/>
|
|
124
|
+
<parameter name="beta" value="2.03"/>
|
|
125
|
+
<parameter name="zero" value="-2.00"/>
|
|
126
|
+
<parameter name="minval" value="-2.00"/>
|
|
127
|
+
</negmodel_distribution>
|
|
128
|
+
</mixturemodel_distribution>
|
|
129
|
+
<mixturemodel_distribution name="no. tolerable tryptic term. [ntt]">
|
|
130
|
+
<posmodel_distribution>
|
|
131
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
132
|
+
<parameter name="ntt=1" value="0.032"/>
|
|
133
|
+
<parameter name="ntt=2" value="0.968"/>
|
|
134
|
+
</posmodel_distribution>
|
|
135
|
+
<negmodel_distribution>
|
|
136
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
137
|
+
<parameter name="ntt=1" value="0.033"/>
|
|
138
|
+
<parameter name="ntt=2" value="0.967"/>
|
|
139
|
+
</negmodel_distribution>
|
|
140
|
+
</mixturemodel_distribution>
|
|
141
|
+
<mixturemodel_distribution name="no. missed enz. cleavages [nmc]">
|
|
142
|
+
<posmodel_distribution>
|
|
143
|
+
<parameter name="nmc=0" value="0.827"/>
|
|
144
|
+
<parameter name="1<=nmc<=2" value="0.173"/>
|
|
145
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
146
|
+
</posmodel_distribution>
|
|
147
|
+
<negmodel_distribution>
|
|
148
|
+
<parameter name="nmc=0" value="0.820"/>
|
|
149
|
+
<parameter name="1<=nmc<=2" value="0.180"/>
|
|
150
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
151
|
+
</negmodel_distribution>
|
|
152
|
+
</mixturemodel_distribution>
|
|
153
|
+
<mixturemodel_distribution name="var offset mass diff [massd] (offset: -0.90)">
|
|
154
|
+
<posmodel_distribution>
|
|
155
|
+
<parameter name="massd=-2.0" value="0.11"/>
|
|
156
|
+
<parameter name="massd=-1.0" value="0.16"/>
|
|
157
|
+
<parameter name="massd=0.0" value="0.21"/>
|
|
158
|
+
<parameter name="massd=1.0" value="0.19"/>
|
|
159
|
+
<parameter name="massd=2.0" value="0.20"/>
|
|
160
|
+
<parameter name="massd=3.0" value="0.08"/>
|
|
161
|
+
<parameter name="massd=4.0" value="0.00"/>
|
|
162
|
+
</posmodel_distribution>
|
|
163
|
+
<negmodel_distribution>
|
|
164
|
+
<parameter name="massd=-2.0" value="0.07"/>
|
|
165
|
+
<parameter name="massd=-1.0" value="0.12"/>
|
|
166
|
+
<parameter name="massd=0.0" value="0.17"/>
|
|
167
|
+
<parameter name="massd=1.0" value="0.19"/>
|
|
168
|
+
<parameter name="massd=2.0" value="0.19"/>
|
|
169
|
+
<parameter name="massd=3.0" value="0.21"/>
|
|
170
|
+
<parameter name="massd=4.0" value="0.05"/>
|
|
171
|
+
</negmodel_distribution>
|
|
172
|
+
</mixturemodel_distribution>
|
|
173
|
+
</mixture_model>
|
|
174
|
+
<mixture_model precursor_ion_charge="2" comments="using training data negative distributions" prior_probability="0.037" est_tot_correct="1339.5" tot_num_spectra="36348" num_iterations="42">
|
|
175
|
+
<mixturemodel_distribution name="SEQUEST discrim score [fval] negmean: -2.97">
|
|
176
|
+
<posmodel_distribution type="gaussian">
|
|
177
|
+
<parameter name="mean" value="4.80"/>
|
|
178
|
+
<parameter name="stdev" value="1.79"/>
|
|
179
|
+
</posmodel_distribution>
|
|
180
|
+
<negmodel_distribution type="gamma">
|
|
181
|
+
<parameter name="m1" value="4.22"/>
|
|
182
|
+
<parameter name="m2" value="19.12"/>
|
|
183
|
+
<parameter name="alpha" value="0.31"/>
|
|
184
|
+
<parameter name="beta" value="13.67"/>
|
|
185
|
+
<parameter name="zero" value="-5.00"/>
|
|
186
|
+
</negmodel_distribution>
|
|
187
|
+
</mixturemodel_distribution>
|
|
188
|
+
<mixturemodel_distribution name="no. tolerable tryptic term. [ntt]">
|
|
189
|
+
<posmodel_distribution>
|
|
190
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
191
|
+
<parameter name="ntt=1" value="0.021"/>
|
|
192
|
+
<parameter name="ntt=2" value="0.979"/>
|
|
193
|
+
</posmodel_distribution>
|
|
194
|
+
<negmodel_distribution>
|
|
195
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
196
|
+
<parameter name="ntt=1" value="0.040"/>
|
|
197
|
+
<parameter name="ntt=2" value="0.960"/>
|
|
198
|
+
</negmodel_distribution>
|
|
199
|
+
</mixturemodel_distribution>
|
|
200
|
+
<mixturemodel_distribution name="no. missed enz. cleavages [nmc]">
|
|
201
|
+
<posmodel_distribution>
|
|
202
|
+
<parameter name="nmc=0" value="0.966"/>
|
|
203
|
+
<parameter name="1<=nmc<=2" value="0.034"/>
|
|
204
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
205
|
+
</posmodel_distribution>
|
|
206
|
+
<negmodel_distribution>
|
|
207
|
+
<parameter name="nmc=0" value="0.532"/>
|
|
208
|
+
<parameter name="1<=nmc<=2" value="0.468"/>
|
|
209
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
210
|
+
</negmodel_distribution>
|
|
211
|
+
</mixturemodel_distribution>
|
|
212
|
+
<mixturemodel_distribution name="var offset mass diff [massd] (offset: -0.60)">
|
|
213
|
+
<posmodel_distribution>
|
|
214
|
+
<parameter name="massd=-2.0" value="0.01"/>
|
|
215
|
+
<parameter name="massd=-1.0" value="0.10"/>
|
|
216
|
+
<parameter name="massd=0.0" value="0.45"/>
|
|
217
|
+
<parameter name="massd=1.0" value="0.26"/>
|
|
218
|
+
<parameter name="massd=2.0" value="0.10"/>
|
|
219
|
+
<parameter name="massd=3.0" value="0.07"/>
|
|
220
|
+
<parameter name="massd=4.0" value="0.01"/>
|
|
221
|
+
</posmodel_distribution>
|
|
222
|
+
<negmodel_distribution>
|
|
223
|
+
<parameter name="massd=-2.0" value="0.12"/>
|
|
224
|
+
<parameter name="massd=-1.0" value="0.16"/>
|
|
225
|
+
<parameter name="massd=0.0" value="0.17"/>
|
|
226
|
+
<parameter name="massd=1.0" value="0.18"/>
|
|
227
|
+
<parameter name="massd=2.0" value="0.18"/>
|
|
228
|
+
<parameter name="massd=3.0" value="0.17"/>
|
|
229
|
+
<parameter name="massd=4.0" value="0.03"/>
|
|
230
|
+
</negmodel_distribution>
|
|
231
|
+
</mixturemodel_distribution>
|
|
232
|
+
</mixture_model>
|
|
233
|
+
<mixture_model precursor_ion_charge="3" comments="using training data negative distributions" prior_probability="0.030" est_tot_correct="1096.1" tot_num_spectra="36348" num_iterations="54">
|
|
234
|
+
<mixturemodel_distribution name="SEQUEST discrim score [fval] negmean: -2.58">
|
|
235
|
+
<posmodel_distribution type="gaussian">
|
|
236
|
+
<parameter name="mean" value="4.67"/>
|
|
237
|
+
<parameter name="stdev" value="2.35"/>
|
|
238
|
+
</posmodel_distribution>
|
|
239
|
+
<negmodel_distribution type="gamma">
|
|
240
|
+
<parameter name="m1" value="4.24"/>
|
|
241
|
+
<parameter name="m2" value="19.43"/>
|
|
242
|
+
<parameter name="alpha" value="0.34"/>
|
|
243
|
+
<parameter name="beta" value="12.29"/>
|
|
244
|
+
<parameter name="zero" value="-4.60"/>
|
|
245
|
+
</negmodel_distribution>
|
|
246
|
+
</mixturemodel_distribution>
|
|
247
|
+
<mixturemodel_distribution name="no. tolerable tryptic term. [ntt]">
|
|
248
|
+
<posmodel_distribution>
|
|
249
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
250
|
+
<parameter name="ntt=1" value="0.015"/>
|
|
251
|
+
<parameter name="ntt=2" value="0.985"/>
|
|
252
|
+
</posmodel_distribution>
|
|
253
|
+
<negmodel_distribution>
|
|
254
|
+
<parameter name="ntt=0" value="0.000"/>
|
|
255
|
+
<parameter name="ntt=1" value="0.041"/>
|
|
256
|
+
<parameter name="ntt=2" value="0.959"/>
|
|
257
|
+
</negmodel_distribution>
|
|
258
|
+
</mixturemodel_distribution>
|
|
259
|
+
<mixturemodel_distribution name="no. missed enz. cleavages [nmc]">
|
|
260
|
+
<posmodel_distribution>
|
|
261
|
+
<parameter name="nmc=0" value="0.734"/>
|
|
262
|
+
<parameter name="1<=nmc<=2" value="0.266"/>
|
|
263
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
264
|
+
</posmodel_distribution>
|
|
265
|
+
<negmodel_distribution>
|
|
266
|
+
<parameter name="nmc=0" value="0.329"/>
|
|
267
|
+
<parameter name="1<=nmc<=2" value="0.671"/>
|
|
268
|
+
<parameter name="nmc>=3" value="0.000"/>
|
|
269
|
+
</negmodel_distribution>
|
|
270
|
+
</mixturemodel_distribution>
|
|
271
|
+
<mixturemodel_distribution name="var offset mass diff [massd] (offset: -0.10)">
|
|
272
|
+
<posmodel_distribution>
|
|
273
|
+
<parameter name="massd=-3.0" value="0.01"/>
|
|
274
|
+
<parameter name="massd=-2.0" value="0.04"/>
|
|
275
|
+
<parameter name="massd=-1.0" value="0.22"/>
|
|
276
|
+
<parameter name="massd=0.0" value="0.42"/>
|
|
277
|
+
<parameter name="massd=1.0" value="0.16"/>
|
|
278
|
+
<parameter name="massd=2.0" value="0.10"/>
|
|
279
|
+
<parameter name="massd=3.0" value="0.05"/>
|
|
280
|
+
</posmodel_distribution>
|
|
281
|
+
<negmodel_distribution>
|
|
282
|
+
<parameter name="massd=-3.0" value="0.06"/>
|
|
283
|
+
<parameter name="massd=-2.0" value="0.18"/>
|
|
284
|
+
<parameter name="massd=-1.0" value="0.16"/>
|
|
285
|
+
<parameter name="massd=0.0" value="0.17"/>
|
|
286
|
+
<parameter name="massd=1.0" value="0.17"/>
|
|
287
|
+
<parameter name="massd=2.0" value="0.15"/>
|
|
288
|
+
<parameter name="massd=3.0" value="0.11"/>
|
|
289
|
+
</negmodel_distribution>
|
|
290
|
+
</mixturemodel_distribution>
|
|
291
|
+
</mixture_model>
|
|
292
|
+
</peptideprophet_summary>
|
|
293
|
+
<interact_summary time="Tue Dec 6 21:48:31 2005" filename="/var/www/html/isb/yeast_gly.xml" directory="/var/www/html/isb" inputfiles="work/ms/john/align/yeast/gly/summary/005a.xml work/ms/john/align/yeast/gly/summary/005b.xml work/ms/john/align/yeast/gly/summary/005c.xml work/ms/john/align/yeast/gly/summary/020a.xml work/ms/john/align/yeast/gly/summary/020b.xml work/ms/john/align/yeast/gly/summary/020c.xml work/ms/john/align/yeast/gly/summary/060a.xml work/ms/john/align/yeast/gly/summary/060b.xml work/ms/john/align/yeast/gly/summary/060c.xml work/ms/john/align/yeast/gly/summary/900a.xml work/ms/john/align/yeast/gly/summary/900b.xml work/ms/john/align/yeast/gly/summary/900c.xml"/>
|
|
294
|
+
<dataset_derivation generation_no="0"/>
|
|
295
|
+
<msms_run_summary base_name="/work/john/align/yeast/gly/summary/005a" search_engine="SEQUEST" database="/work/ms/database/scerevisiae_all_our.fasta" raw_data_type="mzXML" raw_data=".mzXML" out_data_type="out" out_data=".tgz" sample_enzyme="tryptic">
|
|
296
|
+
<database_refresh_timestamp time="Tue Dec 6 21:51:46 2005" database="/work/ms/database/scerevisiae_all_our.fasta"/>
|
|
297
|
+
<search_summary base_name="/work/john/align/yeast/gly/summary/005a" search_engine="SEQUEST" precursor_mass_type="average" fragment_mass_type="average">
|
|
298
|
+
<enzymatic_search_constraint enzyme="tryptic" max_num_internal_cleavages="2" min_number_termini="2"/>
|
|
299
|
+
<sequence_search_constraint sequence="0"/>
|
|
300
|
+
<sequence_search_constraint sequence="0"/>
|
|
301
|
+
<parameter name="peptide_mass_tol" value="3.000"/>
|
|
302
|
+
<parameter name="fragment_ion_tol" value="0.000"/>
|
|
303
|
+
<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
|
|
304
|
+
<parameter name="max_num_differential_AA_per_mod" value="4"/>
|
|
305
|
+
<parameter name="nucleotide_reading_frame" value="0"/>
|
|
306
|
+
<parameter name="num_output_lines" value="10"/>
|
|
307
|
+
<parameter name="remove_precursor_peak" value="0"/>
|
|
308
|
+
<parameter name="ion_cutoff_percentage" value="0.0"/>
|
|
309
|
+
<parameter name="match_peak_count" value="0"/>
|
|
310
|
+
<parameter name="match_peak_allowed_error" value="1"/>
|
|
311
|
+
<parameter name="match_peak_tolerance" value="1.0"/>
|
|
312
|
+
<parameter name="protein_mass_filter" value="0 0"/>
|
|
313
|
+
<parameter name="sequence_header_filter" value=""/>
|
|
314
|
+
</search_summary>
|
|
315
|
+
<peptideprophet_timestamp time="Tue Dec 6 21:51:15 2005"/>
|
|
316
|
+
<search_result spectrum="005a.1163.1163.2" start_scan="1163" end_scan="1163" precursor_neutral_mass="1016.3920" assumed_charge="2" index="28">
|
|
317
|
+
<search_hit hit_rank="1" peptide="LLTTIADAAK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 18" calc_neutral_pep_mass="1016.1920" massdiff="+0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
318
|
+
<search_score name="xcorr" value="2.342"/>
|
|
319
|
+
<search_score name="deltacn" value="0.379"/>
|
|
320
|
+
<search_score name="deltacnstar" value="0"/>
|
|
321
|
+
<search_score name="spscore" value="530.1"/>
|
|
322
|
+
<search_score name="sprank" value="1"/>
|
|
323
|
+
<peptideprophet_result probability="0.9484" all_ntt_prob="(0.0000,0.9030,0.9484)">
|
|
324
|
+
<search_score_summary>
|
|
325
|
+
<parameter name="fval" value="3.9170"/>
|
|
326
|
+
<parameter name="ntt" value="2"/>
|
|
327
|
+
<parameter name="nmc" value="0"/>
|
|
328
|
+
<parameter name="massd" value="0.200"/>
|
|
329
|
+
</search_score_summary>
|
|
330
|
+
</peptideprophet_result>
|
|
331
|
+
</search_hit>
|
|
332
|
+
</search_result>
|
|
333
|
+
<search_result spectrum="005a.1243.1243.2" start_scan="1243" end_scan="1243" precursor_neutral_mass="1141.7920" assumed_charge="2" index="37">
|
|
334
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSK" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="2" num_matched_ions=" 11" tot_num_ions=" 20" calc_neutral_pep_mass="1143.2920" massdiff="-1.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
335
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
336
|
+
<search_score name="xcorr" value="1.406"/>
|
|
337
|
+
<search_score name="deltacn" value="0.427"/>
|
|
338
|
+
<search_score name="deltacnstar" value="0"/>
|
|
339
|
+
<search_score name="spscore" value="274.1"/>
|
|
340
|
+
<search_score name="sprank" value="1"/>
|
|
341
|
+
<peptideprophet_result probability="0.3218" all_ntt_prob="(0.0000,0.1939,0.3218)">
|
|
342
|
+
<search_score_summary>
|
|
343
|
+
<parameter name="fval" value="2.6516"/>
|
|
344
|
+
<parameter name="ntt" value="2"/>
|
|
345
|
+
<parameter name="nmc" value="0"/>
|
|
346
|
+
<parameter name="massd" value="-1.500"/>
|
|
347
|
+
</search_score_summary>
|
|
348
|
+
</peptideprophet_result>
|
|
349
|
+
</search_hit>
|
|
350
|
+
</search_result>
|
|
351
|
+
<search_result spectrum="005a.1595.1595.3" start_scan="1595" end_scan="1595" precursor_neutral_mass="1596.7920" assumed_charge="3" index="98">
|
|
352
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 56" calc_neutral_pep_mass="1596.7920" massdiff="+0.0" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
353
|
+
<search_score name="xcorr" value="2.588"/>
|
|
354
|
+
<search_score name="deltacn" value="0.400"/>
|
|
355
|
+
<search_score name="deltacnstar" value="0"/>
|
|
356
|
+
<search_score name="spscore" value="631.0"/>
|
|
357
|
+
<search_score name="sprank" value="1"/>
|
|
358
|
+
<peptideprophet_result probability="0.9016" all_ntt_prob="(0.0000,0.7674,0.9016)">
|
|
359
|
+
<search_score_summary>
|
|
360
|
+
<parameter name="fval" value="5.0117"/>
|
|
361
|
+
<parameter name="ntt" value="2"/>
|
|
362
|
+
<parameter name="nmc" value="1"/>
|
|
363
|
+
<parameter name="massd" value="0.000"/>
|
|
364
|
+
</search_score_summary>
|
|
365
|
+
</peptideprophet_result>
|
|
366
|
+
</search_hit>
|
|
367
|
+
</search_result>
|
|
368
|
+
<search_result spectrum="005a.1601.1601.3" start_scan="1601" end_scan="1601" precursor_neutral_mass="1596.8920" assumed_charge="3" index="100">
|
|
369
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 29" tot_num_ions=" 56" calc_neutral_pep_mass="1596.7920" massdiff="+0.1" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
370
|
+
<search_score name="xcorr" value="3.030"/>
|
|
371
|
+
<search_score name="deltacn" value="0.481"/>
|
|
372
|
+
<search_score name="deltacnstar" value="0"/>
|
|
373
|
+
<search_score name="spscore" value="1215.9"/>
|
|
374
|
+
<search_score name="sprank" value="1"/>
|
|
375
|
+
<peptideprophet_result probability="0.9873" all_ntt_prob="(0.0000,0.9656,0.9873)">
|
|
376
|
+
<search_score_summary>
|
|
377
|
+
<parameter name="fval" value="6.3355"/>
|
|
378
|
+
<parameter name="ntt" value="2"/>
|
|
379
|
+
<parameter name="nmc" value="1"/>
|
|
380
|
+
<parameter name="massd" value="0.100"/>
|
|
381
|
+
</search_score_summary>
|
|
382
|
+
</peptideprophet_result>
|
|
383
|
+
</search_hit>
|
|
384
|
+
</search_result>
|
|
385
|
+
<search_result spectrum="005a.1712.1712.2" start_scan="1712" end_scan="1712" precursor_neutral_mass="1263.4919" assumed_charge="2" index="110">
|
|
386
|
+
<search_hit hit_rank="1" peptide="NPVILADACCSR" peptide_prev_aa="K" peptide_next_aa="H" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 22" calc_neutral_pep_mass="1261.4919" massdiff="+2.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
387
|
+
<search_score name="xcorr" value="2.441"/>
|
|
388
|
+
<search_score name="deltacn" value="0.389"/>
|
|
389
|
+
<search_score name="deltacnstar" value="0"/>
|
|
390
|
+
<search_score name="spscore" value="1077.2"/>
|
|
391
|
+
<search_score name="sprank" value="1"/>
|
|
392
|
+
<peptideprophet_result probability="0.8303" all_ntt_prob="(0.0000,0.7126,0.8303)">
|
|
393
|
+
<search_score_summary>
|
|
394
|
+
<parameter name="fval" value="3.9598"/>
|
|
395
|
+
<parameter name="ntt" value="2"/>
|
|
396
|
+
<parameter name="nmc" value="0"/>
|
|
397
|
+
<parameter name="massd" value="2.000"/>
|
|
398
|
+
</search_score_summary>
|
|
399
|
+
</peptideprophet_result>
|
|
400
|
+
</search_hit>
|
|
401
|
+
</search_result>
|
|
402
|
+
<search_result spectrum="005a.207.207.2" start_scan="207" end_scan="207" precursor_neutral_mass="1356.9919" assumed_charge="2" index="165">
|
|
403
|
+
<search_hit hit_rank="1" peptide="NIVEFHSDHMK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 20" calc_neutral_pep_mass="1356.4919" massdiff="+0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
404
|
+
<search_score name="xcorr" value="2.873"/>
|
|
405
|
+
<search_score name="deltacn" value="0.423"/>
|
|
406
|
+
<search_score name="deltacnstar" value="0"/>
|
|
407
|
+
<search_score name="spscore" value="1010.3"/>
|
|
408
|
+
<search_score name="sprank" value="1"/>
|
|
409
|
+
<peptideprophet_result probability="0.9896" all_ntt_prob="(0.0000,0.9796,0.9896)">
|
|
410
|
+
<search_score_summary>
|
|
411
|
+
<parameter name="fval" value="4.7723"/>
|
|
412
|
+
<parameter name="ntt" value="2"/>
|
|
413
|
+
<parameter name="nmc" value="0"/>
|
|
414
|
+
<parameter name="massd" value="0.500"/>
|
|
415
|
+
</search_score_summary>
|
|
416
|
+
</peptideprophet_result>
|
|
417
|
+
</search_hit>
|
|
418
|
+
</search_result>
|
|
419
|
+
<search_result spectrum="005a.4338.4338.2" start_scan="4338" end_scan="4338" precursor_neutral_mass="1213.3919" assumed_charge="2" index="429">
|
|
420
|
+
<search_hit hit_rank="1" peptide="EVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 20" calc_neutral_pep_mass="1213.4919" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
421
|
+
<search_score name="xcorr" value="3.415"/>
|
|
422
|
+
<search_score name="deltacn" value="0.383"/>
|
|
423
|
+
<search_score name="deltacnstar" value="0"/>
|
|
424
|
+
<search_score name="spscore" value="1352.6"/>
|
|
425
|
+
<search_score name="sprank" value="1"/>
|
|
426
|
+
<peptideprophet_result probability="0.9929" all_ntt_prob="(0.0000,0.9860,0.9929)">
|
|
427
|
+
<search_score_summary>
|
|
428
|
+
<parameter name="fval" value="4.9996"/>
|
|
429
|
+
<parameter name="ntt" value="2"/>
|
|
430
|
+
<parameter name="nmc" value="0"/>
|
|
431
|
+
<parameter name="massd" value="-0.100"/>
|
|
432
|
+
</search_score_summary>
|
|
433
|
+
</peptideprophet_result>
|
|
434
|
+
</search_hit>
|
|
435
|
+
</search_result>
|
|
436
|
+
<search_result spectrum="005a.4344.4344.2" start_scan="4344" end_scan="4344" precursor_neutral_mass="1213.1919" assumed_charge="2" index="430">
|
|
437
|
+
<search_hit hit_rank="1" peptide="EVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 20" calc_neutral_pep_mass="1213.4919" massdiff="-0.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
438
|
+
<search_score name="xcorr" value="3.507"/>
|
|
439
|
+
<search_score name="deltacn" value="0.449"/>
|
|
440
|
+
<search_score name="deltacnstar" value="0"/>
|
|
441
|
+
<search_score name="spscore" value="1586.3"/>
|
|
442
|
+
<search_score name="sprank" value="1"/>
|
|
443
|
+
<peptideprophet_result probability="0.9987" all_ntt_prob="(0.0000,0.9973,0.9987)">
|
|
444
|
+
<search_score_summary>
|
|
445
|
+
<parameter name="fval" value="5.5625"/>
|
|
446
|
+
<parameter name="ntt" value="2"/>
|
|
447
|
+
<parameter name="nmc" value="0"/>
|
|
448
|
+
<parameter name="massd" value="-0.300"/>
|
|
449
|
+
</search_score_summary>
|
|
450
|
+
</peptideprophet_result>
|
|
451
|
+
</search_hit>
|
|
452
|
+
</search_result>
|
|
453
|
+
<search_result spectrum="005a.4483.4483.2" start_scan="4483" end_scan="4483" precursor_neutral_mass="1212.7919" assumed_charge="2" index="441">
|
|
454
|
+
<search_hit hit_rank="1" peptide="EVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 10" tot_num_ions=" 20" calc_neutral_pep_mass="1213.4919" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
455
|
+
<search_score name="xcorr" value="1.880"/>
|
|
456
|
+
<search_score name="deltacn" value="0.181"/>
|
|
457
|
+
<search_score name="deltacnstar" value="0"/>
|
|
458
|
+
<search_score name="spscore" value="262.8"/>
|
|
459
|
+
<search_score name="sprank" value="9"/>
|
|
460
|
+
<peptideprophet_result probability="0.0841" all_ntt_prob="(0.0000,0.0444,0.0841)">
|
|
461
|
+
<search_score_summary>
|
|
462
|
+
<parameter name="fval" value="1.2884"/>
|
|
463
|
+
<parameter name="ntt" value="2"/>
|
|
464
|
+
<parameter name="nmc" value="0"/>
|
|
465
|
+
<parameter name="massd" value="-0.700"/>
|
|
466
|
+
</search_score_summary>
|
|
467
|
+
</peptideprophet_result>
|
|
468
|
+
</search_hit>
|
|
469
|
+
</search_result>
|
|
470
|
+
<search_result spectrum="005a.711.711.2" start_scan="711" end_scan="711" precursor_neutral_mass="996.9920" assumed_charge="2" index="489">
|
|
471
|
+
<search_hit hit_rank="1" peptide="IYEVEGMR" peptide_prev_aa="K" peptide_next_aa="W" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 11" tot_num_ions=" 14" calc_neutral_pep_mass="996.1920" massdiff="+0.8" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
472
|
+
<search_score name="xcorr" value="2.737"/>
|
|
473
|
+
<search_score name="deltacn" value="0.135"/>
|
|
474
|
+
<search_score name="deltacnstar" value="0"/>
|
|
475
|
+
<search_score name="spscore" value="726.3"/>
|
|
476
|
+
<search_score name="sprank" value="5"/>
|
|
477
|
+
<peptideprophet_result probability="0.4807" all_ntt_prob="(0.0000,0.3193,0.4807)">
|
|
478
|
+
<search_score_summary>
|
|
479
|
+
<parameter name="fval" value="2.5468"/>
|
|
480
|
+
<parameter name="ntt" value="2"/>
|
|
481
|
+
<parameter name="nmc" value="0"/>
|
|
482
|
+
<parameter name="massd" value="0.800"/>
|
|
483
|
+
</search_score_summary>
|
|
484
|
+
</peptideprophet_result>
|
|
485
|
+
</search_hit>
|
|
486
|
+
</search_result>
|
|
487
|
+
<search_result spectrum="005a.717.717.2" start_scan="717" end_scan="717" precursor_neutral_mass="995.8920" assumed_charge="2" index="490">
|
|
488
|
+
<search_hit hit_rank="1" peptide="IYEVEGMR" peptide_prev_aa="K" peptide_next_aa="W" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 14" calc_neutral_pep_mass="996.1920" massdiff="-0.3" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
489
|
+
<search_score name="xcorr" value="3.102"/>
|
|
490
|
+
<search_score name="deltacn" value="0.170"/>
|
|
491
|
+
<search_score name="deltacnstar" value="0"/>
|
|
492
|
+
<search_score name="spscore" value="850.7"/>
|
|
493
|
+
<search_score name="sprank" value="1"/>
|
|
494
|
+
<peptideprophet_result probability="0.9319" all_ntt_prob="(0.0000,0.8740,0.9319)">
|
|
495
|
+
<search_score_summary>
|
|
496
|
+
<parameter name="fval" value="3.5431"/>
|
|
497
|
+
<parameter name="ntt" value="2"/>
|
|
498
|
+
<parameter name="nmc" value="0"/>
|
|
499
|
+
<parameter name="massd" value="-0.300"/>
|
|
500
|
+
</search_score_summary>
|
|
501
|
+
</peptideprophet_result>
|
|
502
|
+
</search_hit>
|
|
503
|
+
</search_result>
|
|
504
|
+
<search_result spectrum="005a.843.843.2" start_scan="843" end_scan="843" precursor_neutral_mass="1337.2919" assumed_charge="2" index="507">
|
|
505
|
+
<search_hit hit_rank="1" peptide="TPANAAVPASTPLK" peptide_prev_aa="R" peptide_next_aa="Q" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 26" calc_neutral_pep_mass="1337.4919" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
506
|
+
<search_score name="xcorr" value="3.369"/>
|
|
507
|
+
<search_score name="deltacn" value="0.566"/>
|
|
508
|
+
<search_score name="deltacnstar" value="0"/>
|
|
509
|
+
<search_score name="spscore" value="959.0"/>
|
|
510
|
+
<search_score name="sprank" value="1"/>
|
|
511
|
+
<peptideprophet_result probability="0.9922" all_ntt_prob="(0.0000,0.9848,0.9922)">
|
|
512
|
+
<search_score_summary>
|
|
513
|
+
<parameter name="fval" value="6.0333"/>
|
|
514
|
+
<parameter name="ntt" value="2"/>
|
|
515
|
+
<parameter name="nmc" value="0"/>
|
|
516
|
+
<parameter name="massd" value="-0.200"/>
|
|
517
|
+
</search_score_summary>
|
|
518
|
+
</peptideprophet_result>
|
|
519
|
+
</search_hit>
|
|
520
|
+
</search_result>
|
|
521
|
+
<search_result spectrum="005a.852.852.2" start_scan="852" end_scan="852" precursor_neutral_mass="1336.6919" assumed_charge="2" index="509">
|
|
522
|
+
<search_hit hit_rank="1" peptide="TPANAAVPASTPLK" peptide_prev_aa="R" peptide_next_aa="Q" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 26" calc_neutral_pep_mass="1337.4919" massdiff="-0.8" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
523
|
+
<search_score name="xcorr" value="3.554"/>
|
|
524
|
+
<search_score name="deltacn" value="0.523"/>
|
|
525
|
+
<search_score name="deltacnstar" value="0"/>
|
|
526
|
+
<search_score name="spscore" value="666.2"/>
|
|
527
|
+
<search_score name="sprank" value="1"/>
|
|
528
|
+
<peptideprophet_result probability="0.9958" all_ntt_prob="(0.0000,0.9918,0.9958)">
|
|
529
|
+
<search_score_summary>
|
|
530
|
+
<parameter name="fval" value="5.8679"/>
|
|
531
|
+
<parameter name="ntt" value="2"/>
|
|
532
|
+
<parameter name="nmc" value="0"/>
|
|
533
|
+
<parameter name="massd" value="-0.800"/>
|
|
534
|
+
</search_score_summary>
|
|
535
|
+
</peptideprophet_result>
|
|
536
|
+
</search_hit>
|
|
537
|
+
</search_result>
|
|
538
|
+
<search_result spectrum="005b.2660.2660.3" start_scan="2660" end_scan="2660" precursor_neutral_mass="2388.6919" assumed_charge="3" index="731">
|
|
539
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 24" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="+0.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
540
|
+
<search_score name="xcorr" value="2.450"/>
|
|
541
|
+
<search_score name="deltacn" value="0.276"/>
|
|
542
|
+
<search_score name="deltacnstar" value="0"/>
|
|
543
|
+
<search_score name="spscore" value="463.3"/>
|
|
544
|
+
<search_score name="sprank" value="1"/>
|
|
545
|
+
<peptideprophet_result probability="0.7355" all_ntt_prob="(0.0000,0.5006,0.7355)">
|
|
546
|
+
<search_score_summary>
|
|
547
|
+
<parameter name="fval" value="3.2945"/>
|
|
548
|
+
<parameter name="ntt" value="2"/>
|
|
549
|
+
<parameter name="nmc" value="0"/>
|
|
550
|
+
<parameter name="massd" value="0.000"/>
|
|
551
|
+
</search_score_summary>
|
|
552
|
+
</peptideprophet_result>
|
|
553
|
+
</search_hit>
|
|
554
|
+
</search_result>
|
|
555
|
+
<search_result spectrum="005b.2667.2667.3" start_scan="2667" end_scan="2667" precursor_neutral_mass="2390.3919" assumed_charge="3" index="732">
|
|
556
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 26" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="+1.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
557
|
+
<search_score name="xcorr" value="2.641"/>
|
|
558
|
+
<search_score name="deltacn" value="0.355"/>
|
|
559
|
+
<search_score name="deltacnstar" value="0"/>
|
|
560
|
+
<search_score name="spscore" value="637.0"/>
|
|
561
|
+
<search_score name="sprank" value="1"/>
|
|
562
|
+
<peptideprophet_result probability="0.8259" all_ntt_prob="(0.0000,0.6309,0.8259)">
|
|
563
|
+
<search_score_summary>
|
|
564
|
+
<parameter name="fval" value="4.3653"/>
|
|
565
|
+
<parameter name="ntt" value="2"/>
|
|
566
|
+
<parameter name="nmc" value="0"/>
|
|
567
|
+
<parameter name="massd" value="1.700"/>
|
|
568
|
+
</search_score_summary>
|
|
569
|
+
</peptideprophet_result>
|
|
570
|
+
</search_hit>
|
|
571
|
+
</search_result>
|
|
572
|
+
<search_result spectrum="005b.2862.2862.2" start_scan="2862" end_scan="2862" precursor_neutral_mass="1778.4920" assumed_charge="2" index="748">
|
|
573
|
+
<search_hit hit_rank="1" peptide="LIDLTQFPAFVTPMGK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 30" calc_neutral_pep_mass="1778.0920" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
574
|
+
<search_score name="xcorr" value="3.694"/>
|
|
575
|
+
<search_score name="deltacn" value="0.566"/>
|
|
576
|
+
<search_score name="deltacnstar" value="0"/>
|
|
577
|
+
<search_score name="spscore" value="727.9"/>
|
|
578
|
+
<search_score name="sprank" value="1"/>
|
|
579
|
+
<peptideprophet_result probability="0.9814" all_ntt_prob="(0.0000,0.9640,0.9814)">
|
|
580
|
+
<search_score_summary>
|
|
581
|
+
<parameter name="fval" value="6.2164"/>
|
|
582
|
+
<parameter name="ntt" value="2"/>
|
|
583
|
+
<parameter name="nmc" value="0"/>
|
|
584
|
+
<parameter name="massd" value="0.400"/>
|
|
585
|
+
</search_score_summary>
|
|
586
|
+
</peptideprophet_result>
|
|
587
|
+
</search_hit>
|
|
588
|
+
</search_result>
|
|
589
|
+
<search_result spectrum="005b.3054.3054.2" start_scan="3054" end_scan="3054" precursor_neutral_mass="1777.9920" assumed_charge="2" index="780">
|
|
590
|
+
<search_hit hit_rank="1" peptide="LIDLTQFPAFVTPMGK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 10" tot_num_ions=" 30" calc_neutral_pep_mass="1778.0920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
591
|
+
<search_score name="xcorr" value="1.803"/>
|
|
592
|
+
<search_score name="deltacn" value="0.198"/>
|
|
593
|
+
<search_score name="deltacnstar" value="0"/>
|
|
594
|
+
<search_score name="spscore" value="208.4"/>
|
|
595
|
+
<search_score name="sprank" value="3"/>
|
|
596
|
+
<peptideprophet_result probability="0.0947" all_ntt_prob="(0.0000,0.0503,0.0947)">
|
|
597
|
+
<search_score_summary>
|
|
598
|
+
<parameter name="fval" value="1.3439"/>
|
|
599
|
+
<parameter name="ntt" value="2"/>
|
|
600
|
+
<parameter name="nmc" value="0"/>
|
|
601
|
+
<parameter name="massd" value="-0.100"/>
|
|
602
|
+
</search_score_summary>
|
|
603
|
+
</peptideprophet_result>
|
|
604
|
+
</search_hit>
|
|
605
|
+
</search_result>
|
|
606
|
+
<search_result spectrum="005b.688.688.2" start_scan="688" end_scan="688" precursor_neutral_mass="1595.3920" assumed_charge="2" index="971">
|
|
607
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 28" calc_neutral_pep_mass="1596.7920" massdiff="-1.4" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
608
|
+
<search_score name="xcorr" value="3.518"/>
|
|
609
|
+
<search_score name="deltacn" value="0.490"/>
|
|
610
|
+
<search_score name="deltacnstar" value="0"/>
|
|
611
|
+
<search_score name="spscore" value="483.7"/>
|
|
612
|
+
<search_score name="sprank" value="1"/>
|
|
613
|
+
<peptideprophet_result probability="0.8755" all_ntt_prob="(0.0000,0.7809,0.8755)">
|
|
614
|
+
<search_score_summary>
|
|
615
|
+
<parameter name="fval" value="5.5268"/>
|
|
616
|
+
<parameter name="ntt" value="2"/>
|
|
617
|
+
<parameter name="nmc" value="1"/>
|
|
618
|
+
<parameter name="massd" value="-1.400"/>
|
|
619
|
+
</search_score_summary>
|
|
620
|
+
</peptideprophet_result>
|
|
621
|
+
</search_hit>
|
|
622
|
+
</search_result>
|
|
623
|
+
<search_result spectrum="005b.691.691.2" start_scan="691" end_scan="691" precursor_neutral_mass="1596.0920" assumed_charge="2" index="972">
|
|
624
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 19" tot_num_ions=" 28" calc_neutral_pep_mass="1596.7920" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
625
|
+
<search_score name="xcorr" value="3.865"/>
|
|
626
|
+
<search_score name="deltacn" value="0.399"/>
|
|
627
|
+
<search_score name="deltacnstar" value="0"/>
|
|
628
|
+
<search_score name="spscore" value="951.0"/>
|
|
629
|
+
<search_score name="sprank" value="1"/>
|
|
630
|
+
<peptideprophet_result probability="0.9359" all_ntt_prob="(0.0000,0.8810,0.9359)">
|
|
631
|
+
<search_score_summary>
|
|
632
|
+
<parameter name="fval" value="5.1182"/>
|
|
633
|
+
<parameter name="ntt" value="2"/>
|
|
634
|
+
<parameter name="nmc" value="1"/>
|
|
635
|
+
<parameter name="massd" value="-0.700"/>
|
|
636
|
+
</search_score_summary>
|
|
637
|
+
</peptideprophet_result>
|
|
638
|
+
</search_hit>
|
|
639
|
+
</search_result>
|
|
640
|
+
<search_result spectrum="005c.2381.2381.3" start_scan="2381" end_scan="2381" precursor_neutral_mass="2742.6919" assumed_charge="3" index="1120">
|
|
641
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 27" tot_num_ions=" 96" calc_neutral_pep_mass="2743.1919" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
642
|
+
<search_score name="xcorr" value="3.717"/>
|
|
643
|
+
<search_score name="deltacn" value="0.440"/>
|
|
644
|
+
<search_score name="deltacnstar" value="0"/>
|
|
645
|
+
<search_score name="spscore" value="423.0"/>
|
|
646
|
+
<search_score name="sprank" value="1"/>
|
|
647
|
+
<peptideprophet_result probability="0.9568" all_ntt_prob="(0.0000,0.8886,0.9568)">
|
|
648
|
+
<search_score_summary>
|
|
649
|
+
<parameter name="fval" value="6.0270"/>
|
|
650
|
+
<parameter name="ntt" value="2"/>
|
|
651
|
+
<parameter name="nmc" value="1"/>
|
|
652
|
+
<parameter name="massd" value="-0.500"/>
|
|
653
|
+
</search_score_summary>
|
|
654
|
+
</peptideprophet_result>
|
|
655
|
+
</search_hit>
|
|
656
|
+
</search_result>
|
|
657
|
+
<search_result spectrum="005c.2385.2385.3" start_scan="2385" end_scan="2385" precursor_neutral_mass="2742.9919" assumed_charge="3" index="1122">
|
|
658
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 31" tot_num_ions=" 96" calc_neutral_pep_mass="2743.1919" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
659
|
+
<search_score name="xcorr" value="4.640"/>
|
|
660
|
+
<search_score name="deltacn" value="0.335"/>
|
|
661
|
+
<search_score name="deltacnstar" value="0"/>
|
|
662
|
+
<search_score name="spscore" value="662.8"/>
|
|
663
|
+
<search_score name="sprank" value="1"/>
|
|
664
|
+
<peptideprophet_result probability="0.9421" all_ntt_prob="(0.0000,0.8543,0.9421)">
|
|
665
|
+
<search_score_summary>
|
|
666
|
+
<parameter name="fval" value="5.3590"/>
|
|
667
|
+
<parameter name="ntt" value="2"/>
|
|
668
|
+
<parameter name="nmc" value="1"/>
|
|
669
|
+
<parameter name="massd" value="-0.200"/>
|
|
670
|
+
</search_score_summary>
|
|
671
|
+
</peptideprophet_result>
|
|
672
|
+
</search_hit>
|
|
673
|
+
</search_result>
|
|
674
|
+
<search_result spectrum="005c.2533.2533.2" start_scan="2533" end_scan="2533" precursor_neutral_mass="1890.5920" assumed_charge="2" index="1136">
|
|
675
|
+
<search_hit hit_rank="1" peptide="PVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 34" calc_neutral_pep_mass="1893.1920" massdiff="-2.6" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
676
|
+
<search_score name="xcorr" value="2.995"/>
|
|
677
|
+
<search_score name="deltacn" value="0.424"/>
|
|
678
|
+
<search_score name="deltacnstar" value="0"/>
|
|
679
|
+
<search_score name="spscore" value="516.5"/>
|
|
680
|
+
<search_score name="sprank" value="1"/>
|
|
681
|
+
<peptideprophet_result probability="0.7341" all_ntt_prob="(0.0000,0.7341,0.8449)">
|
|
682
|
+
<search_score_summary>
|
|
683
|
+
<parameter name="fval" value="4.6038"/>
|
|
684
|
+
<parameter name="ntt" value="1"/>
|
|
685
|
+
<parameter name="nmc" value="0"/>
|
|
686
|
+
<parameter name="massd" value="-2.600"/>
|
|
687
|
+
</search_score_summary>
|
|
688
|
+
</peptideprophet_result>
|
|
689
|
+
</search_hit>
|
|
690
|
+
</search_result>
|
|
691
|
+
<search_result spectrum="005c.2535.2535.2" start_scan="2535" end_scan="2535" precursor_neutral_mass="1894.2920" assumed_charge="2" index="1137">
|
|
692
|
+
<search_hit hit_rank="1" peptide="PVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 34" calc_neutral_pep_mass="1893.1920" massdiff="+1.1" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
693
|
+
<search_score name="xcorr" value="4.162"/>
|
|
694
|
+
<search_score name="deltacn" value="0.544"/>
|
|
695
|
+
<search_score name="deltacnstar" value="0"/>
|
|
696
|
+
<search_score name="spscore" value="947.9"/>
|
|
697
|
+
<search_score name="sprank" value="1"/>
|
|
698
|
+
<peptideprophet_result probability="0.9858" all_ntt_prob="(0.0000,0.9858,0.9928)">
|
|
699
|
+
<search_score_summary>
|
|
700
|
+
<parameter name="fval" value="6.3816"/>
|
|
701
|
+
<parameter name="ntt" value="1"/>
|
|
702
|
+
<parameter name="nmc" value="0"/>
|
|
703
|
+
<parameter name="massd" value="1.100"/>
|
|
704
|
+
</search_score_summary>
|
|
705
|
+
</peptideprophet_result>
|
|
706
|
+
</search_hit>
|
|
707
|
+
</search_result>
|
|
708
|
+
<search_result spectrum="005c.2555.2555.2" start_scan="2555" end_scan="2555" precursor_neutral_mass="1894.0920" assumed_charge="2" index="1138">
|
|
709
|
+
<search_hit hit_rank="1" peptide="PVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 24" tot_num_ions=" 34" calc_neutral_pep_mass="1893.1920" massdiff="+0.9" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
710
|
+
<search_score name="xcorr" value="4.696"/>
|
|
711
|
+
<search_score name="deltacn" value="0.548"/>
|
|
712
|
+
<search_score name="deltacnstar" value="0"/>
|
|
713
|
+
<search_score name="spscore" value="1124.4"/>
|
|
714
|
+
<search_score name="sprank" value="1"/>
|
|
715
|
+
<peptideprophet_result probability="0.9997" all_ntt_prob="(0.0000,0.9997,0.9999)">
|
|
716
|
+
<search_score_summary>
|
|
717
|
+
<parameter name="fval" value="6.7409"/>
|
|
718
|
+
<parameter name="ntt" value="1"/>
|
|
719
|
+
<parameter name="nmc" value="0"/>
|
|
720
|
+
<parameter name="massd" value="0.900"/>
|
|
721
|
+
</search_score_summary>
|
|
722
|
+
</peptideprophet_result>
|
|
723
|
+
</search_hit>
|
|
724
|
+
</search_result>
|
|
725
|
+
<search_result spectrum="005c.2861.2861.2" start_scan="2861" end_scan="2861" precursor_neutral_mass="2521.2920" assumed_charge="2" index="1170">
|
|
726
|
+
<search_hit hit_rank="1" peptide="MSANISETTAMITDIATAPAEIDR" peptide_prev_aa="R" peptide_next_aa="C" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 46" calc_neutral_pep_mass="2522.7920" massdiff="-1.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
727
|
+
<search_score name="xcorr" value="2.935"/>
|
|
728
|
+
<search_score name="deltacn" value="0.480"/>
|
|
729
|
+
<search_score name="deltacnstar" value="0"/>
|
|
730
|
+
<search_score name="spscore" value="433.1"/>
|
|
731
|
+
<search_score name="sprank" value="1"/>
|
|
732
|
+
<peptideprophet_result probability="0.9811" all_ntt_prob="(0.0000,0.9634,0.9811)">
|
|
733
|
+
<search_score_summary>
|
|
734
|
+
<parameter name="fval" value="4.9582"/>
|
|
735
|
+
<parameter name="ntt" value="2"/>
|
|
736
|
+
<parameter name="nmc" value="0"/>
|
|
737
|
+
<parameter name="massd" value="-1.500"/>
|
|
738
|
+
</search_score_summary>
|
|
739
|
+
</peptideprophet_result>
|
|
740
|
+
</search_hit>
|
|
741
|
+
</search_result>
|
|
742
|
+
<search_result spectrum="005c.2866.2866.2" start_scan="2866" end_scan="2866" precursor_neutral_mass="2522.6920" assumed_charge="2" index="1171">
|
|
743
|
+
<search_hit hit_rank="1" peptide="MSANISETTAMITDIATAPAEIDR" peptide_prev_aa="R" peptide_next_aa="C" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 46" calc_neutral_pep_mass="2522.7920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
744
|
+
<search_score name="xcorr" value="4.815"/>
|
|
745
|
+
<search_score name="deltacn" value="0.661"/>
|
|
746
|
+
<search_score name="deltacnstar" value="0"/>
|
|
747
|
+
<search_score name="spscore" value="1103.5"/>
|
|
748
|
+
<search_score name="sprank" value="1"/>
|
|
749
|
+
<peptideprophet_result probability="0.9988" all_ntt_prob="(0.0000,0.9977,0.9988)">
|
|
750
|
+
<search_score_summary>
|
|
751
|
+
<parameter name="fval" value="7.6362"/>
|
|
752
|
+
<parameter name="ntt" value="2"/>
|
|
753
|
+
<parameter name="nmc" value="0"/>
|
|
754
|
+
<parameter name="massd" value="-0.100"/>
|
|
755
|
+
</search_score_summary>
|
|
756
|
+
</peptideprophet_result>
|
|
757
|
+
</search_hit>
|
|
758
|
+
</search_result>
|
|
759
|
+
<search_result spectrum="005c.3175.3175.2" start_scan="3175" end_scan="3175" precursor_neutral_mass="2285.5919" assumed_charge="2" index="1216">
|
|
760
|
+
<search_hit hit_rank="1" peptide="MIEIMLPVFDAPQNLVEQAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 27" tot_num_ions=" 38" calc_neutral_pep_mass="2286.6919" massdiff="-1.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
761
|
+
<search_score name="xcorr" value="5.468"/>
|
|
762
|
+
<search_score name="deltacn" value="0.635"/>
|
|
763
|
+
<search_score name="deltacnstar" value="0"/>
|
|
764
|
+
<search_score name="spscore" value="1400.3"/>
|
|
765
|
+
<search_score name="sprank" value="1"/>
|
|
766
|
+
<peptideprophet_result probability="0.9991" all_ntt_prob="(0.0000,0.9983,0.9991)">
|
|
767
|
+
<search_score_summary>
|
|
768
|
+
<parameter name="fval" value="7.7937"/>
|
|
769
|
+
<parameter name="ntt" value="2"/>
|
|
770
|
+
<parameter name="nmc" value="0"/>
|
|
771
|
+
<parameter name="massd" value="-1.100"/>
|
|
772
|
+
</search_score_summary>
|
|
773
|
+
</peptideprophet_result>
|
|
774
|
+
</search_hit>
|
|
775
|
+
</search_result>
|
|
776
|
+
<search_result spectrum="005c.3178.3178.2" start_scan="3178" end_scan="3178" precursor_neutral_mass="2285.5919" assumed_charge="2" index="1217">
|
|
777
|
+
<search_hit hit_rank="1" peptide="MIEIMLPVFDAPQNLVEQAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 26" tot_num_ions=" 38" calc_neutral_pep_mass="2286.6919" massdiff="-1.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
778
|
+
<search_score name="xcorr" value="5.563"/>
|
|
779
|
+
<search_score name="deltacn" value="0.669"/>
|
|
780
|
+
<search_score name="deltacnstar" value="0"/>
|
|
781
|
+
<search_score name="spscore" value="1089.5"/>
|
|
782
|
+
<search_score name="sprank" value="1"/>
|
|
783
|
+
<peptideprophet_result probability="0.9998" all_ntt_prob="(0.0000,0.9995,0.9998)">
|
|
784
|
+
<search_score_summary>
|
|
785
|
+
<parameter name="fval" value="8.0896"/>
|
|
786
|
+
<parameter name="ntt" value="2"/>
|
|
787
|
+
<parameter name="nmc" value="0"/>
|
|
788
|
+
<parameter name="massd" value="-1.100"/>
|
|
789
|
+
</search_score_summary>
|
|
790
|
+
</peptideprophet_result>
|
|
791
|
+
</search_hit>
|
|
792
|
+
</search_result>
|
|
793
|
+
<search_result spectrum="005c.3181.3183.2" start_scan="3181" end_scan="3183" precursor_neutral_mass="2289.1919" assumed_charge="2" index="1218">
|
|
794
|
+
<search_hit hit_rank="1" peptide="MIEIMLPVFDAPQNLVEQAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions=" 38" calc_neutral_pep_mass="2286.6919" massdiff="+2.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
795
|
+
<search_score name="xcorr" value="5.766"/>
|
|
796
|
+
<search_score name="deltacn" value="0.594"/>
|
|
797
|
+
<search_score name="deltacnstar" value="0"/>
|
|
798
|
+
<search_score name="spscore" value="938.7"/>
|
|
799
|
+
<search_score name="sprank" value="1"/>
|
|
800
|
+
<peptideprophet_result probability="0.9996" all_ntt_prob="(0.0000,0.9992,0.9996)">
|
|
801
|
+
<search_score_summary>
|
|
802
|
+
<parameter name="fval" value="7.6388"/>
|
|
803
|
+
<parameter name="ntt" value="2"/>
|
|
804
|
+
<parameter name="nmc" value="0"/>
|
|
805
|
+
<parameter name="massd" value="2.500"/>
|
|
806
|
+
</search_score_summary>
|
|
807
|
+
</peptideprophet_result>
|
|
808
|
+
</search_hit>
|
|
809
|
+
</search_result>
|
|
810
|
+
<search_result spectrum="005c.3231.3231.2" start_scan="3231" end_scan="3231" precursor_neutral_mass="2293.1920" assumed_charge="2" index="1224">
|
|
811
|
+
<search_hit hit_rank="1" peptide="QVNVNTVFGLPGDFNLSLLDK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 40" calc_neutral_pep_mass="2290.5920" massdiff="+2.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
812
|
+
<search_score name="xcorr" value="4.779"/>
|
|
813
|
+
<search_score name="deltacn" value="0.668"/>
|
|
814
|
+
<search_score name="deltacnstar" value="0"/>
|
|
815
|
+
<search_score name="spscore" value="411.9"/>
|
|
816
|
+
<search_score name="sprank" value="1"/>
|
|
817
|
+
<peptideprophet_result probability="0.9886" all_ntt_prob="(0.0000,0.9778,0.9886)">
|
|
818
|
+
<search_score_summary>
|
|
819
|
+
<parameter name="fval" value="7.6669"/>
|
|
820
|
+
<parameter name="ntt" value="2"/>
|
|
821
|
+
<parameter name="nmc" value="0"/>
|
|
822
|
+
<parameter name="massd" value="2.600"/>
|
|
823
|
+
</search_score_summary>
|
|
824
|
+
</peptideprophet_result>
|
|
825
|
+
</search_hit>
|
|
826
|
+
</search_result>
|
|
827
|
+
<search_result spectrum="005c.3246.3246.2" start_scan="3246" end_scan="3246" precursor_neutral_mass="2524.0920" assumed_charge="2" index="1226">
|
|
828
|
+
<search_hit hit_rank="1" peptide="MSANISETTAMITDIATAPAEIDR" peptide_prev_aa="R" peptide_next_aa="C" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 46" calc_neutral_pep_mass="2522.7920" massdiff="+1.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
829
|
+
<search_score name="xcorr" value="2.249"/>
|
|
830
|
+
<search_score name="deltacn" value="0.406"/>
|
|
831
|
+
<search_score name="deltacnstar" value="0"/>
|
|
832
|
+
<search_score name="spscore" value="571.2"/>
|
|
833
|
+
<search_score name="sprank" value="1"/>
|
|
834
|
+
<peptideprophet_result probability="0.8131" all_ntt_prob="(0.0000,0.6880,0.8131)">
|
|
835
|
+
<search_score_summary>
|
|
836
|
+
<parameter name="fval" value="3.6888"/>
|
|
837
|
+
<parameter name="ntt" value="2"/>
|
|
838
|
+
<parameter name="nmc" value="0"/>
|
|
839
|
+
<parameter name="massd" value="1.300"/>
|
|
840
|
+
</search_score_summary>
|
|
841
|
+
</peptideprophet_result>
|
|
842
|
+
</search_hit>
|
|
843
|
+
</search_result>
|
|
844
|
+
<search_result spectrum="005c.3533.3533.2" start_scan="3533" end_scan="3533" precursor_neutral_mass="2522.1920" assumed_charge="2" index="1258">
|
|
845
|
+
<search_hit hit_rank="1" peptide="MSANISETTAMITDIATAPAEIDR" peptide_prev_aa="R" peptide_next_aa="C" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 11" tot_num_ions=" 46" calc_neutral_pep_mass="2522.7920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
846
|
+
<search_score name="xcorr" value="2.113"/>
|
|
847
|
+
<search_score name="deltacn" value="0.280"/>
|
|
848
|
+
<search_score name="deltacnstar" value="0"/>
|
|
849
|
+
<search_score name="spscore" value="210.2"/>
|
|
850
|
+
<search_score name="sprank" value="4"/>
|
|
851
|
+
<peptideprophet_result probability="0.4968" all_ntt_prob="(0.0000,0.3335,0.4968)">
|
|
852
|
+
<search_score_summary>
|
|
853
|
+
<parameter name="fval" value="2.3205"/>
|
|
854
|
+
<parameter name="ntt" value="2"/>
|
|
855
|
+
<parameter name="nmc" value="0"/>
|
|
856
|
+
<parameter name="massd" value="-0.600"/>
|
|
857
|
+
</search_score_summary>
|
|
858
|
+
</peptideprophet_result>
|
|
859
|
+
</search_hit>
|
|
860
|
+
</search_result>
|
|
861
|
+
<search_result spectrum="005c.3960.3960.2" start_scan="3960" end_scan="3960" precursor_neutral_mass="2520.5920" assumed_charge="2" index="1317">
|
|
862
|
+
<search_hit hit_rank="1" peptide="MSANISETTAMITDIATAPAEIDR" peptide_prev_aa="R" peptide_next_aa="C" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 46" calc_neutral_pep_mass="2522.7920" massdiff="-2.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
863
|
+
<search_score name="xcorr" value="2.188"/>
|
|
864
|
+
<search_score name="deltacn" value="0.398"/>
|
|
865
|
+
<search_score name="deltacnstar" value="0"/>
|
|
866
|
+
<search_score name="spscore" value="325.3"/>
|
|
867
|
+
<search_score name="sprank" value="1"/>
|
|
868
|
+
<peptideprophet_result probability="0.3852" all_ntt_prob="(0.0000,0.2410,0.3852)">
|
|
869
|
+
<search_score_summary>
|
|
870
|
+
<parameter name="fval" value="3.5551"/>
|
|
871
|
+
<parameter name="ntt" value="2"/>
|
|
872
|
+
<parameter name="nmc" value="0"/>
|
|
873
|
+
<parameter name="massd" value="-2.200"/>
|
|
874
|
+
</search_score_summary>
|
|
875
|
+
</peptideprophet_result>
|
|
876
|
+
</search_hit>
|
|
877
|
+
</search_result>
|
|
878
|
+
<search_result spectrum="005c.4031.4031.2" start_scan="4031" end_scan="4031" precursor_neutral_mass="2522.6920" assumed_charge="2" index="1324">
|
|
879
|
+
<search_hit hit_rank="1" peptide="MSANISETTAMITDIATAPAEIDR" peptide_prev_aa="R" peptide_next_aa="C" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 46" calc_neutral_pep_mass="2522.7920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
880
|
+
<search_score name="xcorr" value="2.616"/>
|
|
881
|
+
<search_score name="deltacn" value="0.493"/>
|
|
882
|
+
<search_score name="deltacnstar" value="0"/>
|
|
883
|
+
<search_score name="spscore" value="503.2"/>
|
|
884
|
+
<search_score name="sprank" value="1"/>
|
|
885
|
+
<peptideprophet_result probability="0.9584" all_ntt_prob="(0.0000,0.9211,0.9584)">
|
|
886
|
+
<search_score_summary>
|
|
887
|
+
<parameter name="fval" value="4.7387"/>
|
|
888
|
+
<parameter name="ntt" value="2"/>
|
|
889
|
+
<parameter name="nmc" value="0"/>
|
|
890
|
+
<parameter name="massd" value="-0.100"/>
|
|
891
|
+
</search_score_summary>
|
|
892
|
+
</peptideprophet_result>
|
|
893
|
+
</search_hit>
|
|
894
|
+
</search_result>
|
|
895
|
+
<search_result spectrum="005c.528.528.2" start_scan="528" end_scan="528" precursor_neutral_mass="1998.9920" assumed_charge="2" index="1390">
|
|
896
|
+
<search_hit hit_rank="1" peptide="WAGNANELNAAYAADGYAR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="3" num_matched_ions=" 19" tot_num_ions=" 36" calc_neutral_pep_mass="1998.0920" massdiff="+0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
897
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
898
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
899
|
+
<search_score name="xcorr" value="3.616"/>
|
|
900
|
+
<search_score name="deltacn" value="0.615"/>
|
|
901
|
+
<search_score name="deltacnstar" value="0"/>
|
|
902
|
+
<search_score name="spscore" value="1042.5"/>
|
|
903
|
+
<search_score name="sprank" value="1"/>
|
|
904
|
+
<peptideprophet_result probability="0.9993" all_ntt_prob="(0.0000,0.9987,0.9993)">
|
|
905
|
+
<search_score_summary>
|
|
906
|
+
<parameter name="fval" value="6.5166"/>
|
|
907
|
+
<parameter name="ntt" value="2"/>
|
|
908
|
+
<parameter name="nmc" value="0"/>
|
|
909
|
+
<parameter name="massd" value="0.900"/>
|
|
910
|
+
</search_score_summary>
|
|
911
|
+
</peptideprophet_result>
|
|
912
|
+
</search_hit>
|
|
913
|
+
</search_result>
|
|
914
|
+
<search_result spectrum="005c.532.532.2" start_scan="532" end_scan="532" precursor_neutral_mass="1997.4920" assumed_charge="2" index="1391">
|
|
915
|
+
<search_hit hit_rank="1" peptide="WAGNANELNAAYAADGYAR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="3" num_matched_ions=" 21" tot_num_ions=" 36" calc_neutral_pep_mass="1998.0920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
916
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
917
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
918
|
+
<search_score name="xcorr" value="5.346"/>
|
|
919
|
+
<search_score name="deltacn" value="0.719"/>
|
|
920
|
+
<search_score name="deltacnstar" value="0"/>
|
|
921
|
+
<search_score name="spscore" value="1601.6"/>
|
|
922
|
+
<search_score name="sprank" value="1"/>
|
|
923
|
+
<peptideprophet_result probability="0.9992" all_ntt_prob="(0.0000,0.9984,0.9992)">
|
|
924
|
+
<search_score_summary>
|
|
925
|
+
<parameter name="fval" value="8.3466"/>
|
|
926
|
+
<parameter name="ntt" value="2"/>
|
|
927
|
+
<parameter name="nmc" value="0"/>
|
|
928
|
+
<parameter name="massd" value="-0.600"/>
|
|
929
|
+
</search_score_summary>
|
|
930
|
+
</peptideprophet_result>
|
|
931
|
+
</search_hit>
|
|
932
|
+
</search_result>
|
|
933
|
+
<search_result spectrum="020a.1221.1221.3" start_scan="1221" end_scan="1221" precursor_neutral_mass="1599.1920" assumed_charge="3" index="1445">
|
|
934
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 56" calc_neutral_pep_mass="1596.7920" massdiff="+2.4" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
935
|
+
<search_score name="xcorr" value="2.087"/>
|
|
936
|
+
<search_score name="deltacn" value="0.390"/>
|
|
937
|
+
<search_score name="deltacnstar" value="0"/>
|
|
938
|
+
<search_score name="spscore" value="614.4"/>
|
|
939
|
+
<search_score name="sprank" value="1"/>
|
|
940
|
+
<peptideprophet_result probability="0.3535" all_ntt_prob="(0.0000,0.1646,0.3535)">
|
|
941
|
+
<search_score_summary>
|
|
942
|
+
<parameter name="fval" value="4.3376"/>
|
|
943
|
+
<parameter name="ntt" value="2"/>
|
|
944
|
+
<parameter name="nmc" value="1"/>
|
|
945
|
+
<parameter name="massd" value="2.400"/>
|
|
946
|
+
</search_score_summary>
|
|
947
|
+
</peptideprophet_result>
|
|
948
|
+
</search_hit>
|
|
949
|
+
</search_result>
|
|
950
|
+
<search_result spectrum="020a.3638.3638.2" start_scan="3638" end_scan="3638" precursor_neutral_mass="1213.3919" assumed_charge="2" index="1689">
|
|
951
|
+
<search_hit hit_rank="1" peptide="EVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 20" calc_neutral_pep_mass="1213.4919" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
952
|
+
<search_score name="xcorr" value="3.392"/>
|
|
953
|
+
<search_score name="deltacn" value="0.357"/>
|
|
954
|
+
<search_score name="deltacnstar" value="0"/>
|
|
955
|
+
<search_score name="spscore" value="1536.5"/>
|
|
956
|
+
<search_score name="sprank" value="1"/>
|
|
957
|
+
<peptideprophet_result probability="0.9865" all_ntt_prob="(0.0000,0.9737,0.9865)">
|
|
958
|
+
<search_score_summary>
|
|
959
|
+
<parameter name="fval" value="4.7890"/>
|
|
960
|
+
<parameter name="ntt" value="2"/>
|
|
961
|
+
<parameter name="nmc" value="0"/>
|
|
962
|
+
<parameter name="massd" value="-0.100"/>
|
|
963
|
+
</search_score_summary>
|
|
964
|
+
</peptideprophet_result>
|
|
965
|
+
</search_hit>
|
|
966
|
+
</search_result>
|
|
967
|
+
<search_result spectrum="020a.3644.3644.2" start_scan="3644" end_scan="3644" precursor_neutral_mass="1212.9919" assumed_charge="2" index="1690">
|
|
968
|
+
<search_hit hit_rank="1" peptide="EVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 20" calc_neutral_pep_mass="1213.4919" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
969
|
+
<search_score name="xcorr" value="3.506"/>
|
|
970
|
+
<search_score name="deltacn" value="0.415"/>
|
|
971
|
+
<search_score name="deltacnstar" value="0"/>
|
|
972
|
+
<search_score name="spscore" value="1356.1"/>
|
|
973
|
+
<search_score name="sprank" value="1"/>
|
|
974
|
+
<peptideprophet_result probability="0.9952" all_ntt_prob="(0.0000,0.9906,0.9952)">
|
|
975
|
+
<search_score_summary>
|
|
976
|
+
<parameter name="fval" value="5.3129"/>
|
|
977
|
+
<parameter name="ntt" value="2"/>
|
|
978
|
+
<parameter name="nmc" value="0"/>
|
|
979
|
+
<parameter name="massd" value="-0.500"/>
|
|
980
|
+
</search_score_summary>
|
|
981
|
+
</peptideprophet_result>
|
|
982
|
+
</search_hit>
|
|
983
|
+
</search_result>
|
|
984
|
+
<search_result spectrum="020a.3645.3645.2" start_scan="3645" end_scan="3645" precursor_neutral_mass="1216.1919" assumed_charge="2" index="1691">
|
|
985
|
+
<search_hit hit_rank="1" peptide="EVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 20" calc_neutral_pep_mass="1213.4919" massdiff="+2.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
986
|
+
<search_score name="xcorr" value="3.507"/>
|
|
987
|
+
<search_score name="deltacn" value="0.481"/>
|
|
988
|
+
<search_score name="deltacnstar" value="0"/>
|
|
989
|
+
<search_score name="spscore" value="1103.5"/>
|
|
990
|
+
<search_score name="sprank" value="1"/>
|
|
991
|
+
<peptideprophet_result probability="0.9942" all_ntt_prob="(0.0000,0.9887,0.9942)">
|
|
992
|
+
<search_score_summary>
|
|
993
|
+
<parameter name="fval" value="5.7967"/>
|
|
994
|
+
<parameter name="ntt" value="2"/>
|
|
995
|
+
<parameter name="nmc" value="0"/>
|
|
996
|
+
<parameter name="massd" value="2.700"/>
|
|
997
|
+
</search_score_summary>
|
|
998
|
+
</peptideprophet_result>
|
|
999
|
+
</search_hit>
|
|
1000
|
+
</search_result>
|
|
1001
|
+
<search_result spectrum="020a.578.578.2" start_scan="578" end_scan="578" precursor_neutral_mass="1337.1919" assumed_charge="2" index="1719">
|
|
1002
|
+
<search_hit hit_rank="1" peptide="TPANAAVPASTPLK" peptide_prev_aa="R" peptide_next_aa="Q" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 26" calc_neutral_pep_mass="1337.4919" massdiff="-0.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1003
|
+
<search_score name="xcorr" value="3.363"/>
|
|
1004
|
+
<search_score name="deltacn" value="0.584"/>
|
|
1005
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1006
|
+
<search_score name="spscore" value="765.2"/>
|
|
1007
|
+
<search_score name="sprank" value="1"/>
|
|
1008
|
+
<peptideprophet_result probability="0.9995" all_ntt_prob="(0.0000,0.9989,0.9995)">
|
|
1009
|
+
<search_score_summary>
|
|
1010
|
+
<parameter name="fval" value="6.1601"/>
|
|
1011
|
+
<parameter name="ntt" value="2"/>
|
|
1012
|
+
<parameter name="nmc" value="0"/>
|
|
1013
|
+
<parameter name="massd" value="-0.300"/>
|
|
1014
|
+
</search_score_summary>
|
|
1015
|
+
</peptideprophet_result>
|
|
1016
|
+
</search_hit>
|
|
1017
|
+
</search_result>
|
|
1018
|
+
<search_result spectrum="020a.585.585.2" start_scan="585" end_scan="585" precursor_neutral_mass="1336.7919" assumed_charge="2" index="1720">
|
|
1019
|
+
<search_hit hit_rank="1" peptide="TPANAAVPASTPLK" peptide_prev_aa="R" peptide_next_aa="Q" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 26" calc_neutral_pep_mass="1337.4919" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1020
|
+
<search_score name="xcorr" value="3.780"/>
|
|
1021
|
+
<search_score name="deltacn" value="0.559"/>
|
|
1022
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1023
|
+
<search_score name="spscore" value="1083.4"/>
|
|
1024
|
+
<search_score name="sprank" value="1"/>
|
|
1025
|
+
<peptideprophet_result probability="0.9994" all_ntt_prob="(0.0000,0.9988,0.9994)">
|
|
1026
|
+
<search_score_summary>
|
|
1027
|
+
<parameter name="fval" value="6.3034"/>
|
|
1028
|
+
<parameter name="ntt" value="2"/>
|
|
1029
|
+
<parameter name="nmc" value="0"/>
|
|
1030
|
+
<parameter name="massd" value="-0.700"/>
|
|
1031
|
+
</search_score_summary>
|
|
1032
|
+
</peptideprophet_result>
|
|
1033
|
+
</search_hit>
|
|
1034
|
+
</search_result>
|
|
1035
|
+
<search_result spectrum="020a.596.596.2" start_scan="596" end_scan="596" precursor_neutral_mass="995.7920" assumed_charge="2" index="1721">
|
|
1036
|
+
<search_hit hit_rank="1" peptide="IYEVEGMR" peptide_prev_aa="K" peptide_next_aa="W" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 14" calc_neutral_pep_mass="996.1920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1037
|
+
<search_score name="xcorr" value="2.836"/>
|
|
1038
|
+
<search_score name="deltacn" value="0.063"/>
|
|
1039
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1040
|
+
<search_score name="spscore" value="759.5"/>
|
|
1041
|
+
<search_score name="sprank" value="1"/>
|
|
1042
|
+
<peptideprophet_result probability="0.5772" all_ntt_prob="(0.0000,0.4090,0.5772)">
|
|
1043
|
+
<search_score_summary>
|
|
1044
|
+
<parameter name="fval" value="2.4594"/>
|
|
1045
|
+
<parameter name="ntt" value="2"/>
|
|
1046
|
+
<parameter name="nmc" value="0"/>
|
|
1047
|
+
<parameter name="massd" value="-0.400"/>
|
|
1048
|
+
</search_score_summary>
|
|
1049
|
+
</peptideprophet_result>
|
|
1050
|
+
</search_hit>
|
|
1051
|
+
</search_result>
|
|
1052
|
+
<search_result spectrum="020a.602.602.2" start_scan="602" end_scan="602" precursor_neutral_mass="996.6920" assumed_charge="2" index="1722">
|
|
1053
|
+
<search_hit hit_rank="1" peptide="IYEVEGMR" peptide_prev_aa="K" peptide_next_aa="W" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 14" calc_neutral_pep_mass="996.1920" massdiff="+0.5" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1054
|
+
<search_score name="xcorr" value="2.605"/>
|
|
1055
|
+
<search_score name="deltacn" value="0.045"/>
|
|
1056
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1057
|
+
<search_score name="spscore" value="921.2"/>
|
|
1058
|
+
<search_score name="sprank" value="1"/>
|
|
1059
|
+
<peptideprophet_result probability="0.2267" all_ntt_prob="(0.0000,0.1293,0.2267)">
|
|
1060
|
+
<search_score_summary>
|
|
1061
|
+
<parameter name="fval" value="2.0427"/>
|
|
1062
|
+
<parameter name="ntt" value="2"/>
|
|
1063
|
+
<parameter name="nmc" value="0"/>
|
|
1064
|
+
<parameter name="massd" value="0.500"/>
|
|
1065
|
+
</search_score_summary>
|
|
1066
|
+
</peptideprophet_result>
|
|
1067
|
+
</search_hit>
|
|
1068
|
+
</search_result>
|
|
1069
|
+
<search_result spectrum="020a.892.892.2" start_scan="892" end_scan="892" precursor_neutral_mass="1017.3920" assumed_charge="2" index="1753">
|
|
1070
|
+
<search_hit hit_rank="1" peptide="LLTTIADAAK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 18" calc_neutral_pep_mass="1016.1920" massdiff="+1.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1071
|
+
<search_score name="xcorr" value="1.974"/>
|
|
1072
|
+
<search_score name="deltacn" value="0.355"/>
|
|
1073
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1074
|
+
<search_score name="spscore" value="656.6"/>
|
|
1075
|
+
<search_score name="sprank" value="1"/>
|
|
1076
|
+
<peptideprophet_result probability="0.6088" all_ntt_prob="(0.0000,0.4410,0.6088)">
|
|
1077
|
+
<search_score_summary>
|
|
1078
|
+
<parameter name="fval" value="3.2107"/>
|
|
1079
|
+
<parameter name="ntt" value="2"/>
|
|
1080
|
+
<parameter name="nmc" value="0"/>
|
|
1081
|
+
<parameter name="massd" value="1.200"/>
|
|
1082
|
+
</search_score_summary>
|
|
1083
|
+
</peptideprophet_result>
|
|
1084
|
+
</search_hit>
|
|
1085
|
+
</search_result>
|
|
1086
|
+
<search_result spectrum="020a.963.963.2" start_scan="963" end_scan="963" precursor_neutral_mass="1092.1920" assumed_charge="2" index="1756">
|
|
1087
|
+
<search_hit hit_rank="1" peptide="NATFPGVQMK" peptide_prev_aa="R" peptide_next_aa="F" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="2" num_matched_ions=" 10" tot_num_ions=" 18" calc_neutral_pep_mass="1092.2920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1088
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1089
|
+
<search_score name="xcorr" value="1.806"/>
|
|
1090
|
+
<search_score name="deltacn" value="0.217"/>
|
|
1091
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1092
|
+
<search_score name="spscore" value="299.3"/>
|
|
1093
|
+
<search_score name="sprank" value="2"/>
|
|
1094
|
+
<peptideprophet_result probability="0.2261" all_ntt_prob="(0.0000,0.1290,0.2261)">
|
|
1095
|
+
<search_score_summary>
|
|
1096
|
+
<parameter name="fval" value="1.7869"/>
|
|
1097
|
+
<parameter name="ntt" value="2"/>
|
|
1098
|
+
<parameter name="nmc" value="0"/>
|
|
1099
|
+
<parameter name="massd" value="-0.100"/>
|
|
1100
|
+
</search_score_summary>
|
|
1101
|
+
</peptideprophet_result>
|
|
1102
|
+
</search_hit>
|
|
1103
|
+
</search_result>
|
|
1104
|
+
<search_result spectrum="020a.969.969.2" start_scan="969" end_scan="969" precursor_neutral_mass="1092.0920" assumed_charge="2" index="1757">
|
|
1105
|
+
<search_hit hit_rank="1" peptide="NATFPGVQMK" peptide_prev_aa="R" peptide_next_aa="F" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="2" num_matched_ions=" 13" tot_num_ions=" 18" calc_neutral_pep_mass="1092.2920" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1106
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1107
|
+
<search_score name="xcorr" value="2.228"/>
|
|
1108
|
+
<search_score name="deltacn" value="0.358"/>
|
|
1109
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1110
|
+
<search_score name="spscore" value="488.7"/>
|
|
1111
|
+
<search_score name="sprank" value="1"/>
|
|
1112
|
+
<peptideprophet_result probability="0.9453" all_ntt_prob="(0.0000,0.8975,0.9453)">
|
|
1113
|
+
<search_score_summary>
|
|
1114
|
+
<parameter name="fval" value="3.6084"/>
|
|
1115
|
+
<parameter name="ntt" value="2"/>
|
|
1116
|
+
<parameter name="nmc" value="0"/>
|
|
1117
|
+
<parameter name="massd" value="-0.200"/>
|
|
1118
|
+
</search_score_summary>
|
|
1119
|
+
</peptideprophet_result>
|
|
1120
|
+
</search_hit>
|
|
1121
|
+
</search_result>
|
|
1122
|
+
<search_result spectrum="020b.2427.2427.2" start_scan="2427" end_scan="2427" precursor_neutral_mass="1777.1920" assumed_charge="2" index="1920">
|
|
1123
|
+
<search_hit hit_rank="1" peptide="LIDLTQFPAFVTPMGK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 30" calc_neutral_pep_mass="1778.0920" massdiff="-0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1124
|
+
<search_score name="xcorr" value="4.718"/>
|
|
1125
|
+
<search_score name="deltacn" value="0.662"/>
|
|
1126
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1127
|
+
<search_score name="spscore" value="1438.5"/>
|
|
1128
|
+
<search_score name="sprank" value="1"/>
|
|
1129
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9999,0.9999)">
|
|
1130
|
+
<search_score_summary>
|
|
1131
|
+
<parameter name="fval" value="7.5879"/>
|
|
1132
|
+
<parameter name="ntt" value="2"/>
|
|
1133
|
+
<parameter name="nmc" value="0"/>
|
|
1134
|
+
<parameter name="massd" value="-0.900"/>
|
|
1135
|
+
</search_score_summary>
|
|
1136
|
+
</peptideprophet_result>
|
|
1137
|
+
</search_hit>
|
|
1138
|
+
</search_result>
|
|
1139
|
+
<search_result spectrum="020b.2433.2433.2" start_scan="2433" end_scan="2433" precursor_neutral_mass="1779.6920" assumed_charge="2" index="1922">
|
|
1140
|
+
<search_hit hit_rank="1" peptide="LIDLTQFPAFVTPMGK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 30" calc_neutral_pep_mass="1778.0920" massdiff="+1.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1141
|
+
<search_score name="xcorr" value="4.583"/>
|
|
1142
|
+
<search_score name="deltacn" value="0.574"/>
|
|
1143
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1144
|
+
<search_score name="spscore" value="1294.6"/>
|
|
1145
|
+
<search_score name="sprank" value="1"/>
|
|
1146
|
+
<peptideprophet_result probability="0.9906" all_ntt_prob="(0.0000,0.9816,0.9906)">
|
|
1147
|
+
<search_score_summary>
|
|
1148
|
+
<parameter name="fval" value="6.8646"/>
|
|
1149
|
+
<parameter name="ntt" value="2"/>
|
|
1150
|
+
<parameter name="nmc" value="0"/>
|
|
1151
|
+
<parameter name="massd" value="1.600"/>
|
|
1152
|
+
</search_score_summary>
|
|
1153
|
+
</peptideprophet_result>
|
|
1154
|
+
</search_hit>
|
|
1155
|
+
</search_result>
|
|
1156
|
+
<search_result spectrum="020b.2458.2458.2" start_scan="2458" end_scan="2458" precursor_neutral_mass="1776.5920" assumed_charge="2" index="1924">
|
|
1157
|
+
<search_hit hit_rank="1" peptide="LIDLTQFPAFVTPMGK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 30" calc_neutral_pep_mass="1778.0920" massdiff="-1.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1158
|
+
<search_score name="xcorr" value="4.518"/>
|
|
1159
|
+
<search_score name="deltacn" value="0.653"/>
|
|
1160
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1161
|
+
<search_score name="spscore" value="1498.5"/>
|
|
1162
|
+
<search_score name="sprank" value="1"/>
|
|
1163
|
+
<peptideprophet_result probability="0.9997" all_ntt_prob="(0.0000,0.9995,0.9997)">
|
|
1164
|
+
<search_score_summary>
|
|
1165
|
+
<parameter name="fval" value="7.4036"/>
|
|
1166
|
+
<parameter name="ntt" value="2"/>
|
|
1167
|
+
<parameter name="nmc" value="0"/>
|
|
1168
|
+
<parameter name="massd" value="-1.500"/>
|
|
1169
|
+
</search_score_summary>
|
|
1170
|
+
</peptideprophet_result>
|
|
1171
|
+
</search_hit>
|
|
1172
|
+
</search_result>
|
|
1173
|
+
<search_result spectrum="020b.2469.2469.2" start_scan="2469" end_scan="2469" precursor_neutral_mass="1776.4920" assumed_charge="2" index="1927">
|
|
1174
|
+
<search_hit hit_rank="1" peptide="LIDLTQFPAFVTPMGK" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 30" calc_neutral_pep_mass="1778.0920" massdiff="-1.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1175
|
+
<search_score name="xcorr" value="4.564"/>
|
|
1176
|
+
<search_score name="deltacn" value="0.668"/>
|
|
1177
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1178
|
+
<search_score name="spscore" value="1221.9"/>
|
|
1179
|
+
<search_score name="sprank" value="1"/>
|
|
1180
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9998,0.9999)">
|
|
1181
|
+
<search_score_summary>
|
|
1182
|
+
<parameter name="fval" value="7.5410"/>
|
|
1183
|
+
<parameter name="ntt" value="2"/>
|
|
1184
|
+
<parameter name="nmc" value="0"/>
|
|
1185
|
+
<parameter name="massd" value="-1.600"/>
|
|
1186
|
+
</search_score_summary>
|
|
1187
|
+
</peptideprophet_result>
|
|
1188
|
+
</search_hit>
|
|
1189
|
+
</search_result>
|
|
1190
|
+
<search_result spectrum="020b.401.401.2" start_scan="401" end_scan="401" precursor_neutral_mass="1596.3920" assumed_charge="2" index="2070">
|
|
1191
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 28" calc_neutral_pep_mass="1596.7920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1192
|
+
<search_score name="xcorr" value="3.425"/>
|
|
1193
|
+
<search_score name="deltacn" value="0.452"/>
|
|
1194
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1195
|
+
<search_score name="spscore" value="735.5"/>
|
|
1196
|
+
<search_score name="sprank" value="1"/>
|
|
1197
|
+
<peptideprophet_result probability="0.9411" all_ntt_prob="(0.0000,0.8901,0.9411)">
|
|
1198
|
+
<search_score_summary>
|
|
1199
|
+
<parameter name="fval" value="5.1755"/>
|
|
1200
|
+
<parameter name="ntt" value="2"/>
|
|
1201
|
+
<parameter name="nmc" value="1"/>
|
|
1202
|
+
<parameter name="massd" value="-0.400"/>
|
|
1203
|
+
</search_score_summary>
|
|
1204
|
+
</peptideprophet_result>
|
|
1205
|
+
</search_hit>
|
|
1206
|
+
</search_result>
|
|
1207
|
+
<search_result spectrum="020b.406.406.2" start_scan="406" end_scan="406" precursor_neutral_mass="1596.1920" assumed_charge="2" index="2071">
|
|
1208
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 28" calc_neutral_pep_mass="1596.7920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1209
|
+
<search_score name="xcorr" value="3.132"/>
|
|
1210
|
+
<search_score name="deltacn" value="0.410"/>
|
|
1211
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1212
|
+
<search_score name="spscore" value="1141.6"/>
|
|
1213
|
+
<search_score name="sprank" value="1"/>
|
|
1214
|
+
<peptideprophet_result probability="0.8492" all_ntt_prob="(0.0000,0.7406,0.8492)">
|
|
1215
|
+
<search_score_summary>
|
|
1216
|
+
<parameter name="fval" value="4.6237"/>
|
|
1217
|
+
<parameter name="ntt" value="2"/>
|
|
1218
|
+
<parameter name="nmc" value="1"/>
|
|
1219
|
+
<parameter name="massd" value="-0.600"/>
|
|
1220
|
+
</search_score_summary>
|
|
1221
|
+
</peptideprophet_result>
|
|
1222
|
+
</search_hit>
|
|
1223
|
+
</search_result>
|
|
1224
|
+
<search_result spectrum="020c.1203.1203.3" start_scan="1203" end_scan="1203" precursor_neutral_mass="2743.8919" assumed_charge="3" index="2147">
|
|
1225
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 37" tot_num_ions=" 96" calc_neutral_pep_mass="2743.1919" massdiff="+0.7" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1226
|
+
<search_score name="xcorr" value="5.124"/>
|
|
1227
|
+
<search_score name="deltacn" value="0.373"/>
|
|
1228
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1229
|
+
<search_score name="spscore" value="1081.8"/>
|
|
1230
|
+
<search_score name="sprank" value="1"/>
|
|
1231
|
+
<peptideprophet_result probability="0.9480" all_ntt_prob="(0.0000,0.8678,0.9480)">
|
|
1232
|
+
<search_score_summary>
|
|
1233
|
+
<parameter name="fval" value="6.0172"/>
|
|
1234
|
+
<parameter name="ntt" value="2"/>
|
|
1235
|
+
<parameter name="nmc" value="1"/>
|
|
1236
|
+
<parameter name="massd" value="0.700"/>
|
|
1237
|
+
</search_score_summary>
|
|
1238
|
+
</peptideprophet_result>
|
|
1239
|
+
</search_hit>
|
|
1240
|
+
</search_result>
|
|
1241
|
+
<search_result spectrum="020c.1208.1208.3" start_scan="1208" end_scan="1208" precursor_neutral_mass="2744.8919" assumed_charge="3" index="2148">
|
|
1242
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 36" tot_num_ions=" 96" calc_neutral_pep_mass="2743.1919" massdiff="+1.7" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1243
|
+
<search_score name="xcorr" value="5.875"/>
|
|
1244
|
+
<search_score name="deltacn" value="0.243"/>
|
|
1245
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1246
|
+
<search_score name="spscore" value="1496.2"/>
|
|
1247
|
+
<search_score name="sprank" value="1"/>
|
|
1248
|
+
<peptideprophet_result probability="0.6559" all_ntt_prob="(0.0000,0.4072,0.6559)">
|
|
1249
|
+
<search_score_summary>
|
|
1250
|
+
<parameter name="fval" value="4.8703"/>
|
|
1251
|
+
<parameter name="ntt" value="2"/>
|
|
1252
|
+
<parameter name="nmc" value="1"/>
|
|
1253
|
+
<parameter name="massd" value="1.700"/>
|
|
1254
|
+
</search_score_summary>
|
|
1255
|
+
</peptideprophet_result>
|
|
1256
|
+
</search_hit>
|
|
1257
|
+
</search_result>
|
|
1258
|
+
<search_result spectrum="020c.1346.1346.2" start_scan="1346" end_scan="1346" precursor_neutral_mass="1892.5920" assumed_charge="2" index="2161">
|
|
1259
|
+
<search_hit hit_rank="1" peptide="PVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions=" 34" calc_neutral_pep_mass="1893.1920" massdiff="-0.6" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1260
|
+
<search_score name="xcorr" value="4.665"/>
|
|
1261
|
+
<search_score name="deltacn" value="0.570"/>
|
|
1262
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1263
|
+
<search_score name="spscore" value="1268.9"/>
|
|
1264
|
+
<search_score name="sprank" value="1"/>
|
|
1265
|
+
<peptideprophet_result probability="0.9996" all_ntt_prob="(0.0000,0.9996,0.9998)">
|
|
1266
|
+
<search_score_summary>
|
|
1267
|
+
<parameter name="fval" value="6.8838"/>
|
|
1268
|
+
<parameter name="ntt" value="1"/>
|
|
1269
|
+
<parameter name="nmc" value="0"/>
|
|
1270
|
+
<parameter name="massd" value="-0.600"/>
|
|
1271
|
+
</search_score_summary>
|
|
1272
|
+
</peptideprophet_result>
|
|
1273
|
+
</search_hit>
|
|
1274
|
+
</search_result>
|
|
1275
|
+
<search_result spectrum="020c.1352.1352.2" start_scan="1352" end_scan="1352" precursor_neutral_mass="1893.1920" assumed_charge="2" index="2164">
|
|
1276
|
+
<search_hit hit_rank="1" peptide="PVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions=" 34" calc_neutral_pep_mass="1893.1920" massdiff="+0.0" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1277
|
+
<search_score name="xcorr" value="4.316"/>
|
|
1278
|
+
<search_score name="deltacn" value="0.609"/>
|
|
1279
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1280
|
+
<search_score name="spscore" value="1294.3"/>
|
|
1281
|
+
<search_score name="sprank" value="1"/>
|
|
1282
|
+
<peptideprophet_result probability="0.9770" all_ntt_prob="(0.0000,0.9770,0.9882)">
|
|
1283
|
+
<search_score_summary>
|
|
1284
|
+
<parameter name="fval" value="6.9565"/>
|
|
1285
|
+
<parameter name="ntt" value="1"/>
|
|
1286
|
+
<parameter name="nmc" value="0"/>
|
|
1287
|
+
<parameter name="massd" value="0.000"/>
|
|
1288
|
+
</search_score_summary>
|
|
1289
|
+
</peptideprophet_result>
|
|
1290
|
+
</search_hit>
|
|
1291
|
+
</search_result>
|
|
1292
|
+
<search_result spectrum="020c.2034.2034.2" start_scan="2034" end_scan="2034" precursor_neutral_mass="2284.1919" assumed_charge="2" index="2244">
|
|
1293
|
+
<search_hit hit_rank="1" peptide="MIEIMLPVFDAPQNLVEQAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 27" tot_num_ions=" 38" calc_neutral_pep_mass="2286.6919" massdiff="-2.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1294
|
+
<search_score name="xcorr" value="5.548"/>
|
|
1295
|
+
<search_score name="deltacn" value="0.651"/>
|
|
1296
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1297
|
+
<search_score name="spscore" value="1269.4"/>
|
|
1298
|
+
<search_score name="sprank" value="1"/>
|
|
1299
|
+
<peptideprophet_result probability="0.9997" all_ntt_prob="(0.0000,0.9994,0.9997)">
|
|
1300
|
+
<search_score_summary>
|
|
1301
|
+
<parameter name="fval" value="7.9505"/>
|
|
1302
|
+
<parameter name="ntt" value="2"/>
|
|
1303
|
+
<parameter name="nmc" value="0"/>
|
|
1304
|
+
<parameter name="massd" value="-2.500"/>
|
|
1305
|
+
</search_score_summary>
|
|
1306
|
+
</peptideprophet_result>
|
|
1307
|
+
</search_hit>
|
|
1308
|
+
</search_result>
|
|
1309
|
+
<search_result spectrum="020c.2054.2054.2" start_scan="2054" end_scan="2054" precursor_neutral_mass="2285.7919" assumed_charge="2" index="2247">
|
|
1310
|
+
<search_hit hit_rank="1" peptide="MIEIMLPVFDAPQNLVEQAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions=" 38" calc_neutral_pep_mass="2286.6919" massdiff="-0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1311
|
+
<search_score name="xcorr" value="5.224"/>
|
|
1312
|
+
<search_score name="deltacn" value="0.593"/>
|
|
1313
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1314
|
+
<search_score name="spscore" value="1076.9"/>
|
|
1315
|
+
<search_score name="sprank" value="1"/>
|
|
1316
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,0.9999,1.0000)">
|
|
1317
|
+
<search_score_summary>
|
|
1318
|
+
<parameter name="fval" value="7.3616"/>
|
|
1319
|
+
<parameter name="ntt" value="2"/>
|
|
1320
|
+
<parameter name="nmc" value="0"/>
|
|
1321
|
+
<parameter name="massd" value="-0.900"/>
|
|
1322
|
+
</search_score_summary>
|
|
1323
|
+
</peptideprophet_result>
|
|
1324
|
+
</search_hit>
|
|
1325
|
+
</search_result>
|
|
1326
|
+
<search_result spectrum="020c.2060.2060.2" start_scan="2060" end_scan="2060" precursor_neutral_mass="2285.5919" assumed_charge="2" index="2249">
|
|
1327
|
+
<search_hit hit_rank="1" peptide="MIEIMLPVFDAPQNLVEQAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 24" tot_num_ions=" 38" calc_neutral_pep_mass="2286.6919" massdiff="-1.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1328
|
+
<search_score name="xcorr" value="5.266"/>
|
|
1329
|
+
<search_score name="deltacn" value="0.604"/>
|
|
1330
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1331
|
+
<search_score name="spscore" value="961.0"/>
|
|
1332
|
+
<search_score name="sprank" value="1"/>
|
|
1333
|
+
<peptideprophet_result probability="0.9990" all_ntt_prob="(0.0000,0.9981,0.9990)">
|
|
1334
|
+
<search_score_summary>
|
|
1335
|
+
<parameter name="fval" value="7.4639"/>
|
|
1336
|
+
<parameter name="ntt" value="2"/>
|
|
1337
|
+
<parameter name="nmc" value="0"/>
|
|
1338
|
+
<parameter name="massd" value="-1.100"/>
|
|
1339
|
+
</search_score_summary>
|
|
1340
|
+
</peptideprophet_result>
|
|
1341
|
+
</search_hit>
|
|
1342
|
+
</search_result>
|
|
1343
|
+
<search_result spectrum="020c.2061.2061.2" start_scan="2061" end_scan="2061" precursor_neutral_mass="2290.1920" assumed_charge="2" index="2250">
|
|
1344
|
+
<search_hit hit_rank="1" peptide="QVNVNTVFGLPGDFNLSLLDK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 40" calc_neutral_pep_mass="2290.5920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1345
|
+
<search_score name="xcorr" value="2.999"/>
|
|
1346
|
+
<search_score name="deltacn" value="0.365"/>
|
|
1347
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1348
|
+
<search_score name="spscore" value="390.6"/>
|
|
1349
|
+
<search_score name="sprank" value="1"/>
|
|
1350
|
+
<peptideprophet_result probability="0.9512" all_ntt_prob="(0.0000,0.9080,0.9512)">
|
|
1351
|
+
<search_score_summary>
|
|
1352
|
+
<parameter name="fval" value="4.1758"/>
|
|
1353
|
+
<parameter name="ntt" value="2"/>
|
|
1354
|
+
<parameter name="nmc" value="0"/>
|
|
1355
|
+
<parameter name="massd" value="-0.400"/>
|
|
1356
|
+
</search_score_summary>
|
|
1357
|
+
</peptideprophet_result>
|
|
1358
|
+
</search_hit>
|
|
1359
|
+
</search_result>
|
|
1360
|
+
<search_result spectrum="020c.260.260.2" start_scan="260" end_scan="260" precursor_neutral_mass="1997.4920" assumed_charge="2" index="2320">
|
|
1361
|
+
<search_hit hit_rank="1" peptide="WAGNANELNAAYAADGYAR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="3" num_matched_ions=" 21" tot_num_ions=" 36" calc_neutral_pep_mass="1998.0920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1362
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1363
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1364
|
+
<search_score name="xcorr" value="4.901"/>
|
|
1365
|
+
<search_score name="deltacn" value="0.713"/>
|
|
1366
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1367
|
+
<search_score name="spscore" value="1591.1"/>
|
|
1368
|
+
<search_score name="sprank" value="1"/>
|
|
1369
|
+
<peptideprophet_result probability="0.9949" all_ntt_prob="(0.0000,0.9901,0.9949)">
|
|
1370
|
+
<search_score_summary>
|
|
1371
|
+
<parameter name="fval" value="8.0651"/>
|
|
1372
|
+
<parameter name="ntt" value="2"/>
|
|
1373
|
+
<parameter name="nmc" value="0"/>
|
|
1374
|
+
<parameter name="massd" value="-0.600"/>
|
|
1375
|
+
</search_score_summary>
|
|
1376
|
+
</peptideprophet_result>
|
|
1377
|
+
</search_hit>
|
|
1378
|
+
</search_result>
|
|
1379
|
+
<search_result spectrum="020c.266.266.2" start_scan="266" end_scan="266" precursor_neutral_mass="1997.6920" assumed_charge="2" index="2329">
|
|
1380
|
+
<search_hit hit_rank="1" peptide="WAGNANELNAAYAADGYAR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="3" num_matched_ions=" 22" tot_num_ions=" 36" calc_neutral_pep_mass="1998.0920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1381
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1382
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1383
|
+
<search_score name="xcorr" value="4.932"/>
|
|
1384
|
+
<search_score name="deltacn" value="0.715"/>
|
|
1385
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1386
|
+
<search_score name="spscore" value="1783.9"/>
|
|
1387
|
+
<search_score name="sprank" value="1"/>
|
|
1388
|
+
<peptideprophet_result probability="0.9808" all_ntt_prob="(0.0000,0.9629,0.9808)">
|
|
1389
|
+
<search_score_summary>
|
|
1390
|
+
<parameter name="fval" value="8.0969"/>
|
|
1391
|
+
<parameter name="ntt" value="2"/>
|
|
1392
|
+
<parameter name="nmc" value="0"/>
|
|
1393
|
+
<parameter name="massd" value="-0.400"/>
|
|
1394
|
+
</search_score_summary>
|
|
1395
|
+
</peptideprophet_result>
|
|
1396
|
+
</search_hit>
|
|
1397
|
+
</search_result>
|
|
1398
|
+
<search_result spectrum="060a.1170.1170.3" start_scan="1170" end_scan="1170" precursor_neutral_mass="1596.1920" assumed_charge="3" index="2495">
|
|
1399
|
+
<search_hit hit_rank="1" peptide="YGGVYVGTLSKPEVK" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions=" 56" calc_neutral_pep_mass="1596.7920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1400
|
+
<search_score name="xcorr" value="2.728"/>
|
|
1401
|
+
<search_score name="deltacn" value="0.419"/>
|
|
1402
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1403
|
+
<search_score name="spscore" value="884.1"/>
|
|
1404
|
+
<search_score name="sprank" value="1"/>
|
|
1405
|
+
<peptideprophet_result probability="0.8995" all_ntt_prob="(0.0000,0.7633,0.8995)">
|
|
1406
|
+
<search_score_summary>
|
|
1407
|
+
<parameter name="fval" value="5.3632"/>
|
|
1408
|
+
<parameter name="ntt" value="2"/>
|
|
1409
|
+
<parameter name="nmc" value="1"/>
|
|
1410
|
+
<parameter name="massd" value="-0.600"/>
|
|
1411
|
+
</search_score_summary>
|
|
1412
|
+
</peptideprophet_result>
|
|
1413
|
+
</search_hit>
|
|
1414
|
+
</search_result>
|
|
1415
|
+
<search_result spectrum="060a.461.461.2" start_scan="461" end_scan="461" precursor_neutral_mass="1355.4919" assumed_charge="2" index="2848">
|
|
1416
|
+
<search_hit hit_rank="1" peptide="NIVEFHSDHMK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 20" calc_neutral_pep_mass="1356.4919" massdiff="-1.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1417
|
+
<search_score name="xcorr" value="3.355"/>
|
|
1418
|
+
<search_score name="deltacn" value="0.378"/>
|
|
1419
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1420
|
+
<search_score name="spscore" value="1478.2"/>
|
|
1421
|
+
<search_score name="sprank" value="1"/>
|
|
1422
|
+
<peptideprophet_result probability="0.9958" all_ntt_prob="(0.0000,0.9917,0.9958)">
|
|
1423
|
+
<search_score_summary>
|
|
1424
|
+
<parameter name="fval" value="4.9097"/>
|
|
1425
|
+
<parameter name="ntt" value="2"/>
|
|
1426
|
+
<parameter name="nmc" value="0"/>
|
|
1427
|
+
<parameter name="massd" value="-1.000"/>
|
|
1428
|
+
</search_score_summary>
|
|
1429
|
+
</peptideprophet_result>
|
|
1430
|
+
</search_hit>
|
|
1431
|
+
</search_result>
|
|
1432
|
+
<search_result spectrum="060a.464.464.2" start_scan="464" end_scan="464" precursor_neutral_mass="1355.7919" assumed_charge="2" index="2849">
|
|
1433
|
+
<search_hit hit_rank="1" peptide="NIVEFHSDHMK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 20" calc_neutral_pep_mass="1356.4919" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1434
|
+
<search_score name="xcorr" value="3.333"/>
|
|
1435
|
+
<search_score name="deltacn" value="0.387"/>
|
|
1436
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1437
|
+
<search_score name="spscore" value="1693.6"/>
|
|
1438
|
+
<search_score name="sprank" value="1"/>
|
|
1439
|
+
<peptideprophet_result probability="0.9961" all_ntt_prob="(0.0000,0.9924,0.9961)">
|
|
1440
|
+
<search_score_summary>
|
|
1441
|
+
<parameter name="fval" value="4.9558"/>
|
|
1442
|
+
<parameter name="ntt" value="2"/>
|
|
1443
|
+
<parameter name="nmc" value="0"/>
|
|
1444
|
+
<parameter name="massd" value="-0.700"/>
|
|
1445
|
+
</search_score_summary>
|
|
1446
|
+
</peptideprophet_result>
|
|
1447
|
+
</search_hit>
|
|
1448
|
+
</search_result>
|
|
1449
|
+
<search_result spectrum="060b.146.146.2" start_scan="146" end_scan="146" precursor_neutral_mass="1358.7919" assumed_charge="2" index="2967">
|
|
1450
|
+
<search_hit hit_rank="1" peptide="NIVEFHSDHMK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 20" calc_neutral_pep_mass="1356.4919" massdiff="+2.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1451
|
+
<search_score name="xcorr" value="3.049"/>
|
|
1452
|
+
<search_score name="deltacn" value="0.455"/>
|
|
1453
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1454
|
+
<search_score name="spscore" value="1425.0"/>
|
|
1455
|
+
<search_score name="sprank" value="1"/>
|
|
1456
|
+
<peptideprophet_result probability="0.9830" all_ntt_prob="(0.0000,0.9670,0.9830)">
|
|
1457
|
+
<search_score_summary>
|
|
1458
|
+
<parameter name="fval" value="5.1854"/>
|
|
1459
|
+
<parameter name="ntt" value="2"/>
|
|
1460
|
+
<parameter name="nmc" value="0"/>
|
|
1461
|
+
<parameter name="massd" value="2.300"/>
|
|
1462
|
+
</search_score_summary>
|
|
1463
|
+
</peptideprophet_result>
|
|
1464
|
+
</search_hit>
|
|
1465
|
+
</search_result>
|
|
1466
|
+
<search_result spectrum="060b.2315.2315.3" start_scan="2315" end_scan="2315" precursor_neutral_mass="2388.5919" assumed_charge="3" index="3070">
|
|
1467
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 30" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1468
|
+
<search_score name="xcorr" value="4.299"/>
|
|
1469
|
+
<search_score name="deltacn" value="0.556"/>
|
|
1470
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1471
|
+
<search_score name="spscore" value="881.3"/>
|
|
1472
|
+
<search_score name="sprank" value="1"/>
|
|
1473
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
1474
|
+
<search_score_summary>
|
|
1475
|
+
<parameter name="fval" value="7.8041"/>
|
|
1476
|
+
<parameter name="ntt" value="2"/>
|
|
1477
|
+
<parameter name="nmc" value="0"/>
|
|
1478
|
+
<parameter name="massd" value="-0.100"/>
|
|
1479
|
+
</search_score_summary>
|
|
1480
|
+
</peptideprophet_result>
|
|
1481
|
+
</search_hit>
|
|
1482
|
+
</search_result>
|
|
1483
|
+
<search_result spectrum="060b.2320.2320.3" start_scan="2320" end_scan="2320" precursor_neutral_mass="2389.0919" assumed_charge="3" index="3072">
|
|
1484
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1485
|
+
<search_score name="xcorr" value="3.119"/>
|
|
1486
|
+
<search_score name="deltacn" value="0.425"/>
|
|
1487
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1488
|
+
<search_score name="spscore" value="404.7"/>
|
|
1489
|
+
<search_score name="sprank" value="1"/>
|
|
1490
|
+
<peptideprophet_result probability="0.9921" all_ntt_prob="(0.0000,0.9784,0.9921)">
|
|
1491
|
+
<search_score_summary>
|
|
1492
|
+
<parameter name="fval" value="5.5549"/>
|
|
1493
|
+
<parameter name="ntt" value="2"/>
|
|
1494
|
+
<parameter name="nmc" value="0"/>
|
|
1495
|
+
<parameter name="massd" value="0.400"/>
|
|
1496
|
+
</search_score_summary>
|
|
1497
|
+
</peptideprophet_result>
|
|
1498
|
+
</search_hit>
|
|
1499
|
+
</search_result>
|
|
1500
|
+
<search_result spectrum="060b.2452.2452.3" start_scan="2452" end_scan="2452" precursor_neutral_mass="2387.8919" assumed_charge="3" index="3089">
|
|
1501
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 27" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="-0.8" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1502
|
+
<search_score name="xcorr" value="3.101"/>
|
|
1503
|
+
<search_score name="deltacn" value="0.369"/>
|
|
1504
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1505
|
+
<search_score name="spscore" value="516.0"/>
|
|
1506
|
+
<search_score name="sprank" value="1"/>
|
|
1507
|
+
<peptideprophet_result probability="0.9596" all_ntt_prob="(0.0000,0.8954,0.9596)">
|
|
1508
|
+
<search_score_summary>
|
|
1509
|
+
<parameter name="fval" value="4.9102"/>
|
|
1510
|
+
<parameter name="ntt" value="2"/>
|
|
1511
|
+
<parameter name="nmc" value="0"/>
|
|
1512
|
+
<parameter name="massd" value="-0.800"/>
|
|
1513
|
+
</search_score_summary>
|
|
1514
|
+
</peptideprophet_result>
|
|
1515
|
+
</search_hit>
|
|
1516
|
+
</search_result>
|
|
1517
|
+
<search_result spectrum="060b.2461.2461.3" start_scan="2461" end_scan="2461" precursor_neutral_mass="2388.3919" assumed_charge="3" index="3092">
|
|
1518
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 29" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="-0.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1519
|
+
<search_score name="xcorr" value="3.651"/>
|
|
1520
|
+
<search_score name="deltacn" value="0.443"/>
|
|
1521
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1522
|
+
<search_score name="spscore" value="662.0"/>
|
|
1523
|
+
<search_score name="sprank" value="1"/>
|
|
1524
|
+
<peptideprophet_result probability="0.9967" all_ntt_prob="(0.0000,0.9908,0.9967)">
|
|
1525
|
+
<search_score_summary>
|
|
1526
|
+
<parameter name="fval" value="6.1374"/>
|
|
1527
|
+
<parameter name="ntt" value="2"/>
|
|
1528
|
+
<parameter name="nmc" value="0"/>
|
|
1529
|
+
<parameter name="massd" value="-0.300"/>
|
|
1530
|
+
</search_score_summary>
|
|
1531
|
+
</peptideprophet_result>
|
|
1532
|
+
</search_hit>
|
|
1533
|
+
</search_result>
|
|
1534
|
+
<search_result spectrum="060b.4349.4349.3" start_scan="4349" end_scan="4349" precursor_neutral_mass="2389.3919" assumed_charge="3" index="3283">
|
|
1535
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="+0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1536
|
+
<search_score name="xcorr" value="2.417"/>
|
|
1537
|
+
<search_score name="deltacn" value="0.340"/>
|
|
1538
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1539
|
+
<search_score name="spscore" value="619.5"/>
|
|
1540
|
+
<search_score name="sprank" value="1"/>
|
|
1541
|
+
<peptideprophet_result probability="0.7777" all_ntt_prob="(0.0000,0.5576,0.7777)">
|
|
1542
|
+
<search_score_summary>
|
|
1543
|
+
<parameter name="fval" value="3.9827"/>
|
|
1544
|
+
<parameter name="ntt" value="2"/>
|
|
1545
|
+
<parameter name="nmc" value="0"/>
|
|
1546
|
+
<parameter name="massd" value="0.700"/>
|
|
1547
|
+
</search_score_summary>
|
|
1548
|
+
</peptideprophet_result>
|
|
1549
|
+
</search_hit>
|
|
1550
|
+
</search_result>
|
|
1551
|
+
<search_result spectrum="060c.1073.1073.3" start_scan="1073" end_scan="1073" precursor_neutral_mass="2744.1919" assumed_charge="3" index="3354">
|
|
1552
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 28" tot_num_ions=" 96" calc_neutral_pep_mass="2743.1919" massdiff="+1.0" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1553
|
+
<search_score name="xcorr" value="3.933"/>
|
|
1554
|
+
<search_score name="deltacn" value="0.285"/>
|
|
1555
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1556
|
+
<search_score name="spscore" value="681.4"/>
|
|
1557
|
+
<search_score name="sprank" value="1"/>
|
|
1558
|
+
<peptideprophet_result probability="0.5638" all_ntt_prob="(0.0000,0.3177,0.5638)">
|
|
1559
|
+
<search_score_summary>
|
|
1560
|
+
<parameter name="fval" value="4.4123"/>
|
|
1561
|
+
<parameter name="ntt" value="2"/>
|
|
1562
|
+
<parameter name="nmc" value="1"/>
|
|
1563
|
+
<parameter name="massd" value="1.000"/>
|
|
1564
|
+
</search_score_summary>
|
|
1565
|
+
</peptideprophet_result>
|
|
1566
|
+
</search_hit>
|
|
1567
|
+
</search_result>
|
|
1568
|
+
<search_result spectrum="060c.1102.1102.2" start_scan="1102" end_scan="1102" precursor_neutral_mass="2388.0919" assumed_charge="2" index="3356">
|
|
1569
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 40" calc_neutral_pep_mass="2388.6919" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1570
|
+
<search_score name="xcorr" value="3.749"/>
|
|
1571
|
+
<search_score name="deltacn" value="0.531"/>
|
|
1572
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1573
|
+
<search_score name="spscore" value="731.2"/>
|
|
1574
|
+
<search_score name="sprank" value="1"/>
|
|
1575
|
+
<peptideprophet_result probability="0.9992" all_ntt_prob="(0.0000,0.9984,0.9992)">
|
|
1576
|
+
<search_score_summary>
|
|
1577
|
+
<parameter name="fval" value="6.0007"/>
|
|
1578
|
+
<parameter name="ntt" value="2"/>
|
|
1579
|
+
<parameter name="nmc" value="0"/>
|
|
1580
|
+
<parameter name="massd" value="-0.600"/>
|
|
1581
|
+
</search_score_summary>
|
|
1582
|
+
</peptideprophet_result>
|
|
1583
|
+
</search_hit>
|
|
1584
|
+
</search_result>
|
|
1585
|
+
<search_result spectrum="060c.1110.1110.2" start_scan="1110" end_scan="1110" precursor_neutral_mass="2388.2919" assumed_charge="2" index="3357">
|
|
1586
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 40" calc_neutral_pep_mass="2388.6919" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1587
|
+
<search_score name="xcorr" value="4.304"/>
|
|
1588
|
+
<search_score name="deltacn" value="0.579"/>
|
|
1589
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1590
|
+
<search_score name="spscore" value="880.5"/>
|
|
1591
|
+
<search_score name="sprank" value="1"/>
|
|
1592
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9999,0.9999)">
|
|
1593
|
+
<search_score_summary>
|
|
1594
|
+
<parameter name="fval" value="6.7294"/>
|
|
1595
|
+
<parameter name="ntt" value="2"/>
|
|
1596
|
+
<parameter name="nmc" value="0"/>
|
|
1597
|
+
<parameter name="massd" value="-0.400"/>
|
|
1598
|
+
</search_score_summary>
|
|
1599
|
+
</peptideprophet_result>
|
|
1600
|
+
</search_hit>
|
|
1601
|
+
</search_result>
|
|
1602
|
+
<search_result spectrum="060c.1323.1323.2" start_scan="1323" end_scan="1323" precursor_neutral_mass="2524.4920" assumed_charge="2" index="3381">
|
|
1603
|
+
<search_hit hit_rank="1" peptide="MSANISETTAMITDIATAPAEIDR" peptide_prev_aa="R" peptide_next_aa="C" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 46" calc_neutral_pep_mass="2522.7920" massdiff="+1.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1604
|
+
<search_score name="xcorr" value="2.669"/>
|
|
1605
|
+
<search_score name="deltacn" value="0.444"/>
|
|
1606
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1607
|
+
<search_score name="spscore" value="429.2"/>
|
|
1608
|
+
<search_score name="sprank" value="1"/>
|
|
1609
|
+
<peptideprophet_result probability="0.8595" all_ntt_prob="(0.0000,0.7562,0.8595)">
|
|
1610
|
+
<search_score_summary>
|
|
1611
|
+
<parameter name="fval" value="4.4351"/>
|
|
1612
|
+
<parameter name="ntt" value="2"/>
|
|
1613
|
+
<parameter name="nmc" value="0"/>
|
|
1614
|
+
<parameter name="massd" value="1.700"/>
|
|
1615
|
+
</search_score_summary>
|
|
1616
|
+
</peptideprophet_result>
|
|
1617
|
+
</search_hit>
|
|
1618
|
+
</search_result>
|
|
1619
|
+
<search_result spectrum="060c.1710.1710.2" start_scan="1710" end_scan="1710" precursor_neutral_mass="2290.4920" assumed_charge="2" index="3419">
|
|
1620
|
+
<search_hit hit_rank="1" peptide="QVNVNTVFGLPGDFNLSLLDK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 11" tot_num_ions=" 40" calc_neutral_pep_mass="2290.5920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1621
|
+
<search_score name="xcorr" value="1.693"/>
|
|
1622
|
+
<search_score name="deltacn" value="0.321"/>
|
|
1623
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1624
|
+
<search_score name="spscore" value="161.5"/>
|
|
1625
|
+
<search_score name="sprank" value="1"/>
|
|
1626
|
+
<peptideprophet_result probability="0.4816" all_ntt_prob="(0.0000,0.3201,0.4816)">
|
|
1627
|
+
<search_score_summary>
|
|
1628
|
+
<parameter name="fval" value="2.2904"/>
|
|
1629
|
+
<parameter name="ntt" value="2"/>
|
|
1630
|
+
<parameter name="nmc" value="0"/>
|
|
1631
|
+
<parameter name="massd" value="-0.100"/>
|
|
1632
|
+
</search_score_summary>
|
|
1633
|
+
</peptideprophet_result>
|
|
1634
|
+
</search_hit>
|
|
1635
|
+
</search_result>
|
|
1636
|
+
<search_result spectrum="060c.939.939.3" start_scan="939" end_scan="939" precursor_neutral_mass="2741.5919" assumed_charge="3" index="3692">
|
|
1637
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 35" tot_num_ions=" 96" calc_neutral_pep_mass="2743.1919" massdiff="-1.6" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1638
|
+
<search_score name="xcorr" value="5.269"/>
|
|
1639
|
+
<search_score name="deltacn" value="0.592"/>
|
|
1640
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1641
|
+
<search_score name="spscore" value="874.8"/>
|
|
1642
|
+
<search_score name="sprank" value="1"/>
|
|
1643
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
1644
|
+
<search_score_summary>
|
|
1645
|
+
<parameter name="fval" value="8.5485"/>
|
|
1646
|
+
<parameter name="ntt" value="2"/>
|
|
1647
|
+
<parameter name="nmc" value="1"/>
|
|
1648
|
+
<parameter name="massd" value="-1.600"/>
|
|
1649
|
+
</search_score_summary>
|
|
1650
|
+
</peptideprophet_result>
|
|
1651
|
+
</search_hit>
|
|
1652
|
+
</search_result>
|
|
1653
|
+
<search_result spectrum="060c.944.944.3" start_scan="944" end_scan="944" precursor_neutral_mass="2743.1919" assumed_charge="3" index="3695">
|
|
1654
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 39" tot_num_ions=" 96" calc_neutral_pep_mass="2743.1919" massdiff="+0.0" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1655
|
+
<search_score name="xcorr" value="4.991"/>
|
|
1656
|
+
<search_score name="deltacn" value="0.301"/>
|
|
1657
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1658
|
+
<search_score name="spscore" value="1501.7"/>
|
|
1659
|
+
<search_score name="sprank" value="1"/>
|
|
1660
|
+
<peptideprophet_result probability="0.9196" all_ntt_prob="(0.0000,0.8047,0.9196)">
|
|
1661
|
+
<search_score_summary>
|
|
1662
|
+
<parameter name="fval" value="5.1452"/>
|
|
1663
|
+
<parameter name="ntt" value="2"/>
|
|
1664
|
+
<parameter name="nmc" value="1"/>
|
|
1665
|
+
<parameter name="massd" value="0.000"/>
|
|
1666
|
+
</search_score_summary>
|
|
1667
|
+
</peptideprophet_result>
|
|
1668
|
+
</search_hit>
|
|
1669
|
+
</search_result>
|
|
1670
|
+
<search_result spectrum="060c.952.952.2" start_scan="952" end_scan="952" precursor_neutral_mass="2742.3919" assumed_charge="2" index="3696">
|
|
1671
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 19" tot_num_ions=" 48" calc_neutral_pep_mass="2743.1919" massdiff="-0.8" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1672
|
+
<search_score name="xcorr" value="3.895"/>
|
|
1673
|
+
<search_score name="deltacn" value="0.425"/>
|
|
1674
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1675
|
+
<search_score name="spscore" value="530.6"/>
|
|
1676
|
+
<search_score name="sprank" value="1"/>
|
|
1677
|
+
<peptideprophet_result probability="0.9530" all_ntt_prob="(0.0000,0.9114,0.9530)">
|
|
1678
|
+
<search_score_summary>
|
|
1679
|
+
<parameter name="fval" value="5.3296"/>
|
|
1680
|
+
<parameter name="ntt" value="2"/>
|
|
1681
|
+
<parameter name="nmc" value="1"/>
|
|
1682
|
+
<parameter name="massd" value="-0.800"/>
|
|
1683
|
+
</search_score_summary>
|
|
1684
|
+
</peptideprophet_result>
|
|
1685
|
+
</search_hit>
|
|
1686
|
+
</search_result>
|
|
1687
|
+
<search_result spectrum="060c.957.957.2" start_scan="957" end_scan="957" precursor_neutral_mass="2742.5919" assumed_charge="2" index="3698">
|
|
1688
|
+
<search_hit hit_rank="1" peptide="TTYVTQRPVYLGLPANLVDLNVPAK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 48" calc_neutral_pep_mass="2743.1919" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1689
|
+
<search_score name="xcorr" value="3.424"/>
|
|
1690
|
+
<search_score name="deltacn" value="0.501"/>
|
|
1691
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1692
|
+
<search_score name="spscore" value="437.5"/>
|
|
1693
|
+
<search_score name="sprank" value="1"/>
|
|
1694
|
+
<peptideprophet_result probability="0.9690" all_ntt_prob="(0.0000,0.9406,0.9690)">
|
|
1695
|
+
<search_score_summary>
|
|
1696
|
+
<parameter name="fval" value="5.5333"/>
|
|
1697
|
+
<parameter name="ntt" value="2"/>
|
|
1698
|
+
<parameter name="nmc" value="1"/>
|
|
1699
|
+
<parameter name="massd" value="-0.600"/>
|
|
1700
|
+
</search_score_summary>
|
|
1701
|
+
</peptideprophet_result>
|
|
1702
|
+
</search_hit>
|
|
1703
|
+
</search_result>
|
|
1704
|
+
<search_result spectrum="900a.354.354.2" start_scan="354" end_scan="354" precursor_neutral_mass="1356.4919" assumed_charge="2" index="3807">
|
|
1705
|
+
<search_hit hit_rank="1" peptide="NIVEFHSDHMK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 20" calc_neutral_pep_mass="1356.4919" massdiff="+0.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1706
|
+
<search_score name="xcorr" value="3.023"/>
|
|
1707
|
+
<search_score name="deltacn" value="0.380"/>
|
|
1708
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1709
|
+
<search_score name="spscore" value="1280.2"/>
|
|
1710
|
+
<search_score name="sprank" value="1"/>
|
|
1711
|
+
<peptideprophet_result probability="0.9863" all_ntt_prob="(0.0000,0.9734,0.9863)">
|
|
1712
|
+
<search_score_summary>
|
|
1713
|
+
<parameter name="fval" value="4.6108"/>
|
|
1714
|
+
<parameter name="ntt" value="2"/>
|
|
1715
|
+
<parameter name="nmc" value="0"/>
|
|
1716
|
+
<parameter name="massd" value="0.000"/>
|
|
1717
|
+
</search_score_summary>
|
|
1718
|
+
</peptideprophet_result>
|
|
1719
|
+
</search_hit>
|
|
1720
|
+
</search_result>
|
|
1721
|
+
<search_result spectrum="900a.362.362.2" start_scan="362" end_scan="362" precursor_neutral_mass="1355.9919" assumed_charge="2" index="3808">
|
|
1722
|
+
<search_hit hit_rank="1" peptide="NIVEFHSDHMK" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 20" calc_neutral_pep_mass="1356.4919" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1723
|
+
<search_score name="xcorr" value="3.828"/>
|
|
1724
|
+
<search_score name="deltacn" value="0.433"/>
|
|
1725
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1726
|
+
<search_score name="spscore" value="1653.9"/>
|
|
1727
|
+
<search_score name="sprank" value="1"/>
|
|
1728
|
+
<peptideprophet_result probability="0.9974" all_ntt_prob="(0.0000,0.9949,0.9974)">
|
|
1729
|
+
<search_score_summary>
|
|
1730
|
+
<parameter name="fval" value="5.7090"/>
|
|
1731
|
+
<parameter name="ntt" value="2"/>
|
|
1732
|
+
<parameter name="nmc" value="0"/>
|
|
1733
|
+
<parameter name="massd" value="-0.500"/>
|
|
1734
|
+
</search_score_summary>
|
|
1735
|
+
</peptideprophet_result>
|
|
1736
|
+
</search_hit>
|
|
1737
|
+
</search_result>
|
|
1738
|
+
<search_result spectrum="900b.2132.2132.3" start_scan="2132" end_scan="2132" precursor_neutral_mass="2388.7919" assumed_charge="3" index="3941">
|
|
1739
|
+
<search_hit hit_rank="1" peptide="AQYNEIQGWDHLSLLPTFGAK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 80" calc_neutral_pep_mass="2388.6919" massdiff="+0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1740
|
+
<search_score name="xcorr" value="1.719"/>
|
|
1741
|
+
<search_score name="deltacn" value="0.141"/>
|
|
1742
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1743
|
+
<search_score name="spscore" value="231.5"/>
|
|
1744
|
+
<search_score name="sprank" value="1"/>
|
|
1745
|
+
<peptideprophet_result probability="0.0509" all_ntt_prob="(0.0000,0.0189,0.0509)">
|
|
1746
|
+
<search_score_summary>
|
|
1747
|
+
<parameter name="fval" value="0.9195"/>
|
|
1748
|
+
<parameter name="ntt" value="2"/>
|
|
1749
|
+
<parameter name="nmc" value="0"/>
|
|
1750
|
+
<parameter name="massd" value="0.100"/>
|
|
1751
|
+
</search_score_summary>
|
|
1752
|
+
</peptideprophet_result>
|
|
1753
|
+
</search_hit>
|
|
1754
|
+
</search_result>
|
|
1755
|
+
<search_result spectrum="900b.692.692.3" start_scan="692" end_scan="692" precursor_neutral_mass="2105.4921" assumed_charge="3" index="4059">
|
|
1756
|
+
<search_hit hit_rank="1" peptide="QLLLHHTLGNGDFTVFHR" peptide_prev_aa="K" peptide_next_aa="M" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="4" num_matched_ions=" 24" tot_num_ions=" 68" calc_neutral_pep_mass="2105.3921" massdiff="+0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1757
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1758
|
+
<alternative_protein protein="gi|6320123|ref|NP_010203.1|" protein_descr="alpha-ketoisocaproate decarboxylase; Thi3p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1759
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1760
|
+
<search_score name="xcorr" value="4.143"/>
|
|
1761
|
+
<search_score name="deltacn" value="0.577"/>
|
|
1762
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1763
|
+
<search_score name="spscore" value="888.5"/>
|
|
1764
|
+
<search_score name="sprank" value="1"/>
|
|
1765
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
1766
|
+
<search_score_summary>
|
|
1767
|
+
<parameter name="fval" value="8.0751"/>
|
|
1768
|
+
<parameter name="ntt" value="2"/>
|
|
1769
|
+
<parameter name="nmc" value="0"/>
|
|
1770
|
+
<parameter name="massd" value="0.100"/>
|
|
1771
|
+
</search_score_summary>
|
|
1772
|
+
</peptideprophet_result>
|
|
1773
|
+
</search_hit>
|
|
1774
|
+
</search_result>
|
|
1775
|
+
<search_result spectrum="900b.817.817.3" start_scan="817" end_scan="817" precursor_neutral_mass="2106.9921" assumed_charge="3" index="4067">
|
|
1776
|
+
<search_hit hit_rank="1" peptide="QLLLHHTLGNGDFTVFHR" peptide_prev_aa="K" peptide_next_aa="M" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="4" num_matched_ions=" 25" tot_num_ions=" 68" calc_neutral_pep_mass="2105.3921" massdiff="+1.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1777
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1778
|
+
<alternative_protein protein="gi|6320123|ref|NP_010203.1|" protein_descr="alpha-ketoisocaproate decarboxylase; Thi3p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1779
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1780
|
+
<search_score name="xcorr" value="3.475"/>
|
|
1781
|
+
<search_score name="deltacn" value="0.457"/>
|
|
1782
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1783
|
+
<search_score name="spscore" value="944.7"/>
|
|
1784
|
+
<search_score name="sprank" value="1"/>
|
|
1785
|
+
<peptideprophet_result probability="0.9904" all_ntt_prob="(0.0000,0.9738,0.9904)">
|
|
1786
|
+
<search_score_summary>
|
|
1787
|
+
<parameter name="fval" value="6.2842"/>
|
|
1788
|
+
<parameter name="ntt" value="2"/>
|
|
1789
|
+
<parameter name="nmc" value="0"/>
|
|
1790
|
+
<parameter name="massd" value="1.600"/>
|
|
1791
|
+
</search_score_summary>
|
|
1792
|
+
</peptideprophet_result>
|
|
1793
|
+
</search_hit>
|
|
1794
|
+
</search_result>
|
|
1795
|
+
<search_result spectrum="900b.823.823.3" start_scan="823" end_scan="823" precursor_neutral_mass="2105.9921" assumed_charge="3" index="4068">
|
|
1796
|
+
<search_hit hit_rank="1" peptide="QLLLHHTLGNGDFTVFHR" peptide_prev_aa="K" peptide_next_aa="M" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="4" num_matched_ions=" 20" tot_num_ions=" 68" calc_neutral_pep_mass="2105.3921" massdiff="+0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1797
|
+
<alternative_protein protein="gi|6323163|ref|NP_013235.1|" protein_descr="pyruvate decarboxylase; Pdc5p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1798
|
+
<alternative_protein protein="gi|6320123|ref|NP_010203.1|" protein_descr="alpha-ketoisocaproate decarboxylase; Thi3p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1799
|
+
<alternative_protein protein="gi|6321524|ref|NP_011601.1|" protein_descr="Third, minor isozyme of pyruvate decarboxylase; Pdc6p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
1800
|
+
<search_score name="xcorr" value="3.027"/>
|
|
1801
|
+
<search_score name="deltacn" value="0.458"/>
|
|
1802
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1803
|
+
<search_score name="spscore" value="535.7"/>
|
|
1804
|
+
<search_score name="sprank" value="2"/>
|
|
1805
|
+
<peptideprophet_result probability="0.9865" all_ntt_prob="(0.0000,0.9635,0.9865)">
|
|
1806
|
+
<search_score_summary>
|
|
1807
|
+
<parameter name="fval" value="5.8072"/>
|
|
1808
|
+
<parameter name="ntt" value="2"/>
|
|
1809
|
+
<parameter name="nmc" value="0"/>
|
|
1810
|
+
<parameter name="massd" value="0.600"/>
|
|
1811
|
+
</search_score_summary>
|
|
1812
|
+
</peptideprophet_result>
|
|
1813
|
+
</search_hit>
|
|
1814
|
+
</search_result>
|
|
1815
|
+
<search_result spectrum="900c.2391.2391.3" start_scan="2391" end_scan="2391" precursor_neutral_mass="3325.2921" assumed_charge="3" index="4147">
|
|
1816
|
+
<search_hit hit_rank="1" peptide="LLQTPIDMSLKPNDAESEKEVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 35" tot_num_ions="116" calc_neutral_pep_mass="3324.8921" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="2" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1817
|
+
<search_score name="xcorr" value="5.411"/>
|
|
1818
|
+
<search_score name="deltacn" value="0.640"/>
|
|
1819
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1820
|
+
<search_score name="spscore" value="827.0"/>
|
|
1821
|
+
<search_score name="sprank" value="1"/>
|
|
1822
|
+
<peptideprophet_result probability="0.9998" all_ntt_prob="(0.0000,0.9996,0.9998)">
|
|
1823
|
+
<search_score_summary>
|
|
1824
|
+
<parameter name="fval" value="9.1509"/>
|
|
1825
|
+
<parameter name="ntt" value="2"/>
|
|
1826
|
+
<parameter name="nmc" value="1"/>
|
|
1827
|
+
<parameter name="massd" value="0.400"/>
|
|
1828
|
+
</search_score_summary>
|
|
1829
|
+
</peptideprophet_result>
|
|
1830
|
+
</search_hit>
|
|
1831
|
+
</search_result>
|
|
1832
|
+
<search_result spectrum="900c.2396.2396.3" start_scan="2396" end_scan="2396" precursor_neutral_mass="3324.9921" assumed_charge="3" index="4148">
|
|
1833
|
+
<search_hit hit_rank="1" peptide="LLQTPIDMSLKPNDAESEKEVIDTILALVK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6323073|ref|NP_013145.1|" num_tot_proteins="1" num_matched_ions=" 36" tot_num_ions="116" calc_neutral_pep_mass="3324.8921" massdiff="+0.1" num_tol_term="2" num_missed_cleavages="2" is_rejected="0" protein_descr="pyruvate decarboxylase; Pdc1p [Saccharomyces cerevisiae]">
|
|
1834
|
+
<search_score name="xcorr" value="5.847"/>
|
|
1835
|
+
<search_score name="deltacn" value="0.558"/>
|
|
1836
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1837
|
+
<search_score name="spscore" value="948.6"/>
|
|
1838
|
+
<search_score name="sprank" value="1"/>
|
|
1839
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
1840
|
+
<search_score_summary>
|
|
1841
|
+
<parameter name="fval" value="8.4071"/>
|
|
1842
|
+
<parameter name="ntt" value="2"/>
|
|
1843
|
+
<parameter name="nmc" value="1"/>
|
|
1844
|
+
<parameter name="massd" value="0.100"/>
|
|
1845
|
+
</search_score_summary>
|
|
1846
|
+
</peptideprophet_result>
|
|
1847
|
+
</search_hit>
|
|
1848
|
+
</search_result>
|
|
1849
|
+
<search_result spectrum="005a.2492.2492.2" start_scan="2492" end_scan="2492" precursor_neutral_mass="1353.1919" assumed_charge="2" index="220">
|
|
1850
|
+
<search_hit hit_rank="1" peptide="YAPGTIVLYAER" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 14" tot_num_ions=" 22" calc_neutral_pep_mass="1352.4919" massdiff="+0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1851
|
+
<search_score name="xcorr" value="1.887"/>
|
|
1852
|
+
<search_score name="deltacn" value="0.141"/>
|
|
1853
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1854
|
+
<search_score name="spscore" value="422.9"/>
|
|
1855
|
+
<search_score name="sprank" value="1"/>
|
|
1856
|
+
<peptideprophet_result probability="0.0597" all_ntt_prob="(0.0000,0.0312,0.0597)">
|
|
1857
|
+
<search_score_summary>
|
|
1858
|
+
<parameter name="fval" value="1.3919"/>
|
|
1859
|
+
<parameter name="ntt" value="2"/>
|
|
1860
|
+
<parameter name="nmc" value="0"/>
|
|
1861
|
+
<parameter name="massd" value="0.700"/>
|
|
1862
|
+
</search_score_summary>
|
|
1863
|
+
</peptideprophet_result>
|
|
1864
|
+
</search_hit>
|
|
1865
|
+
</search_result>
|
|
1866
|
+
<search_result spectrum="005a.2873.2873.2" start_scan="2873" end_scan="2873" precursor_neutral_mass="1170.5920" assumed_charge="2" index="266">
|
|
1867
|
+
<search_hit hit_rank="1" peptide="INELTLLVQK" peptide_prev_aa="R" peptide_next_aa="R" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 14" tot_num_ions=" 18" calc_neutral_pep_mass="1170.3920" massdiff="+0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1868
|
+
<search_score name="xcorr" value="2.906"/>
|
|
1869
|
+
<search_score name="deltacn" value="0.415"/>
|
|
1870
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1871
|
+
<search_score name="spscore" value="1140.2"/>
|
|
1872
|
+
<search_score name="sprank" value="1"/>
|
|
1873
|
+
<peptideprophet_result probability="0.9873" all_ntt_prob="(0.0000,0.9753,0.9873)">
|
|
1874
|
+
<search_score_summary>
|
|
1875
|
+
<parameter name="fval" value="4.8503"/>
|
|
1876
|
+
<parameter name="ntt" value="2"/>
|
|
1877
|
+
<parameter name="nmc" value="0"/>
|
|
1878
|
+
<parameter name="massd" value="0.200"/>
|
|
1879
|
+
</search_score_summary>
|
|
1880
|
+
</peptideprophet_result>
|
|
1881
|
+
</search_hit>
|
|
1882
|
+
</search_result>
|
|
1883
|
+
<search_result spectrum="005a.2887.2887.2" start_scan="2887" end_scan="2887" precursor_neutral_mass="1170.2920" assumed_charge="2" index="268">
|
|
1884
|
+
<search_hit hit_rank="1" peptide="INELTLLVQK" peptide_prev_aa="R" peptide_next_aa="R" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 14" tot_num_ions=" 18" calc_neutral_pep_mass="1170.3920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1885
|
+
<search_score name="xcorr" value="2.138"/>
|
|
1886
|
+
<search_score name="deltacn" value="0.213"/>
|
|
1887
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1888
|
+
<search_score name="spscore" value="823.4"/>
|
|
1889
|
+
<search_score name="sprank" value="1"/>
|
|
1890
|
+
<peptideprophet_result probability="0.5545" all_ntt_prob="(0.0000,0.3868,0.5545)">
|
|
1891
|
+
<search_score_summary>
|
|
1892
|
+
<parameter name="fval" value="2.4195"/>
|
|
1893
|
+
<parameter name="ntt" value="2"/>
|
|
1894
|
+
<parameter name="nmc" value="0"/>
|
|
1895
|
+
<parameter name="massd" value="-0.100"/>
|
|
1896
|
+
</search_score_summary>
|
|
1897
|
+
</peptideprophet_result>
|
|
1898
|
+
</search_hit>
|
|
1899
|
+
</search_result>
|
|
1900
|
+
<search_result spectrum="020b.1923.1923.3" start_scan="1923" end_scan="1923" precursor_neutral_mass="2421.0920" assumed_charge="3" index="1874">
|
|
1901
|
+
<search_hit hit_rank="1" peptide="FADGFLIHSGQPVNDFIDTATR" peptide_prev_aa="K" peptide_next_aa="H" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 84" calc_neutral_pep_mass="2421.5920" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1902
|
+
<search_score name="xcorr" value="2.080"/>
|
|
1903
|
+
<search_score name="deltacn" value="0.142"/>
|
|
1904
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1905
|
+
<search_score name="spscore" value="393.4"/>
|
|
1906
|
+
<search_score name="sprank" value="1"/>
|
|
1907
|
+
<peptideprophet_result probability="0.0985" all_ntt_prob="(0.0000,0.0379,0.0985)">
|
|
1908
|
+
<search_score_summary>
|
|
1909
|
+
<parameter name="fval" value="1.3721"/>
|
|
1910
|
+
<parameter name="ntt" value="2"/>
|
|
1911
|
+
<parameter name="nmc" value="0"/>
|
|
1912
|
+
<parameter name="massd" value="-0.500"/>
|
|
1913
|
+
</search_score_summary>
|
|
1914
|
+
</peptideprophet_result>
|
|
1915
|
+
</search_hit>
|
|
1916
|
+
</search_result>
|
|
1917
|
+
<search_result spectrum="020c.2247.2247.2" start_scan="2247" end_scan="2247" precursor_neutral_mass="1989.9920" assumed_charge="2" index="2273">
|
|
1918
|
+
<search_hit hit_rank="1" peptide="LVADGVFYAELNEFFTR" peptide_prev_aa="K" peptide_next_aa="E" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions=" 32" calc_neutral_pep_mass="1991.1920" massdiff="-1.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1919
|
+
<search_score name="xcorr" value="5.779"/>
|
|
1920
|
+
<search_score name="deltacn" value="0.606"/>
|
|
1921
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1922
|
+
<search_score name="spscore" value="2010.1"/>
|
|
1923
|
+
<search_score name="sprank" value="1"/>
|
|
1924
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9999,0.9999)">
|
|
1925
|
+
<search_score_summary>
|
|
1926
|
+
<parameter name="fval" value="7.7327"/>
|
|
1927
|
+
<parameter name="ntt" value="2"/>
|
|
1928
|
+
<parameter name="nmc" value="0"/>
|
|
1929
|
+
<parameter name="massd" value="-1.200"/>
|
|
1930
|
+
</search_score_summary>
|
|
1931
|
+
</peptideprophet_result>
|
|
1932
|
+
</search_hit>
|
|
1933
|
+
</search_result>
|
|
1934
|
+
<search_result spectrum="020c.2253.2253.2" start_scan="2253" end_scan="2253" precursor_neutral_mass="1990.0920" assumed_charge="2" index="2276">
|
|
1935
|
+
<search_hit hit_rank="1" peptide="LVADGVFYAELNEFFTR" peptide_prev_aa="K" peptide_next_aa="E" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 32" calc_neutral_pep_mass="1991.1920" massdiff="-1.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1936
|
+
<search_score name="xcorr" value="5.380"/>
|
|
1937
|
+
<search_score name="deltacn" value="0.672"/>
|
|
1938
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1939
|
+
<search_score name="spscore" value="1960.4"/>
|
|
1940
|
+
<search_score name="sprank" value="1"/>
|
|
1941
|
+
<peptideprophet_result probability="0.9981" all_ntt_prob="(0.0000,0.9962,0.9981)">
|
|
1942
|
+
<search_score_summary>
|
|
1943
|
+
<parameter name="fval" value="8.0201"/>
|
|
1944
|
+
<parameter name="ntt" value="2"/>
|
|
1945
|
+
<parameter name="nmc" value="0"/>
|
|
1946
|
+
<parameter name="massd" value="-1.100"/>
|
|
1947
|
+
</search_score_summary>
|
|
1948
|
+
</peptideprophet_result>
|
|
1949
|
+
</search_hit>
|
|
1950
|
+
</search_result>
|
|
1951
|
+
<search_result spectrum="020c.2278.2278.2" start_scan="2278" end_scan="2278" precursor_neutral_mass="1994.1920" assumed_charge="2" index="2280">
|
|
1952
|
+
<search_hit hit_rank="1" peptide="LVADGVFYAELNEFFTR" peptide_prev_aa="K" peptide_next_aa="E" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 32" calc_neutral_pep_mass="1991.1920" massdiff="+3.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1953
|
+
<search_score name="xcorr" value="5.360"/>
|
|
1954
|
+
<search_score name="deltacn" value="0.684"/>
|
|
1955
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1956
|
+
<search_score name="spscore" value="1667.0"/>
|
|
1957
|
+
<search_score name="sprank" value="1"/>
|
|
1958
|
+
<peptideprophet_result probability="0.9997" all_ntt_prob="(0.0000,0.9994,0.9997)">
|
|
1959
|
+
<search_score_summary>
|
|
1960
|
+
<parameter name="fval" value="8.0977"/>
|
|
1961
|
+
<parameter name="ntt" value="2"/>
|
|
1962
|
+
<parameter name="nmc" value="0"/>
|
|
1963
|
+
<parameter name="massd" value="3.000"/>
|
|
1964
|
+
</search_score_summary>
|
|
1965
|
+
</peptideprophet_result>
|
|
1966
|
+
</search_hit>
|
|
1967
|
+
</search_result>
|
|
1968
|
+
<search_result spectrum="020c.2364.2364.2" start_scan="2364" end_scan="2364" precursor_neutral_mass="1993.1920" assumed_charge="2" index="2291">
|
|
1969
|
+
<search_hit hit_rank="1" peptide="LVADGVFYAELNEFFTR" peptide_prev_aa="K" peptide_next_aa="E" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 32" calc_neutral_pep_mass="1991.1920" massdiff="+2.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1970
|
+
<search_score name="xcorr" value="2.999"/>
|
|
1971
|
+
<search_score name="deltacn" value="0.435"/>
|
|
1972
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1973
|
+
<search_score name="spscore" value="380.9"/>
|
|
1974
|
+
<search_score name="sprank" value="1"/>
|
|
1975
|
+
<peptideprophet_result probability="0.9584" all_ntt_prob="(0.0000,0.9211,0.9584)">
|
|
1976
|
+
<search_score_summary>
|
|
1977
|
+
<parameter name="fval" value="4.6880"/>
|
|
1978
|
+
<parameter name="ntt" value="2"/>
|
|
1979
|
+
<parameter name="nmc" value="0"/>
|
|
1980
|
+
<parameter name="massd" value="2.000"/>
|
|
1981
|
+
</search_score_summary>
|
|
1982
|
+
</peptideprophet_result>
|
|
1983
|
+
</search_hit>
|
|
1984
|
+
</search_result>
|
|
1985
|
+
<search_result spectrum="060b.1879.1879.3" start_scan="1879" end_scan="1879" precursor_neutral_mass="2421.3920" assumed_charge="3" index="3022">
|
|
1986
|
+
<search_hit hit_rank="1" peptide="FADGFLIHSGQPVNDFIDTATR" peptide_prev_aa="K" peptide_next_aa="H" protein="gi|6324151|ref|NP_014221.1|" num_tot_proteins="1" num_matched_ions=" 31" tot_num_ions=" 84" calc_neutral_pep_mass="2421.5920" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Ribosomal protein S3 (rp13) (YS3); Rps3p [Saccharomyces cerevisiae]">
|
|
1987
|
+
<search_score name="xcorr" value="5.283"/>
|
|
1988
|
+
<search_score name="deltacn" value="0.598"/>
|
|
1989
|
+
<search_score name="deltacnstar" value="0"/>
|
|
1990
|
+
<search_score name="spscore" value="975.8"/>
|
|
1991
|
+
<search_score name="sprank" value="1"/>
|
|
1992
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9998,0.9999)">
|
|
1993
|
+
<search_score_summary>
|
|
1994
|
+
<parameter name="fval" value="8.7325"/>
|
|
1995
|
+
<parameter name="ntt" value="2"/>
|
|
1996
|
+
<parameter name="nmc" value="0"/>
|
|
1997
|
+
<parameter name="massd" value="-0.200"/>
|
|
1998
|
+
</search_score_summary>
|
|
1999
|
+
</peptideprophet_result>
|
|
2000
|
+
</search_hit>
|
|
2001
|
+
</search_result>
|
|
2002
|
+
<search_result spectrum="005a.1196.1196.2" start_scan="1196" end_scan="1196" precursor_neutral_mass="1206.2920" assumed_charge="2" index="31">
|
|
2003
|
+
<search_hit hit_rank="1" peptide="AEWGSDIPTTK" peptide_prev_aa="K" peptide_next_aa="E" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 20" calc_neutral_pep_mass="1204.2920" massdiff="+2.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2004
|
+
<search_score name="xcorr" value="2.294"/>
|
|
2005
|
+
<search_score name="deltacn" value="0.430"/>
|
|
2006
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2007
|
+
<search_score name="spscore" value="768.6"/>
|
|
2008
|
+
<search_score name="sprank" value="1"/>
|
|
2009
|
+
<peptideprophet_result probability="0.8835" all_ntt_prob="(0.0000,0.7936,0.8835)">
|
|
2010
|
+
<search_score_summary>
|
|
2011
|
+
<parameter name="fval" value="4.1464"/>
|
|
2012
|
+
<parameter name="ntt" value="2"/>
|
|
2013
|
+
<parameter name="nmc" value="0"/>
|
|
2014
|
+
<parameter name="massd" value="2.000"/>
|
|
2015
|
+
</search_score_summary>
|
|
2016
|
+
</peptideprophet_result>
|
|
2017
|
+
</search_hit>
|
|
2018
|
+
</search_result>
|
|
2019
|
+
<search_result spectrum="005b.1535.1537.2" start_scan="1535" end_scan="1537" precursor_neutral_mass="1378.5920" assumed_charge="2" index="584">
|
|
2020
|
+
<search_hit hit_rank="1" peptide="IPSTPIDYMAIR" peptide_prev_aa="R" peptide_next_aa="H" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 14" tot_num_ions=" 22" calc_neutral_pep_mass="1376.5920" massdiff="+2.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2021
|
+
<search_score name="xcorr" value="1.941"/>
|
|
2022
|
+
<search_score name="deltacn" value="0.314"/>
|
|
2023
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2024
|
+
<search_score name="spscore" value="571.2"/>
|
|
2025
|
+
<search_score name="sprank" value="1"/>
|
|
2026
|
+
<peptideprophet_result probability="0.2545" all_ntt_prob="(0.0000,0.1475,0.2545)">
|
|
2027
|
+
<search_score_summary>
|
|
2028
|
+
<parameter name="fval" value="2.7403"/>
|
|
2029
|
+
<parameter name="ntt" value="2"/>
|
|
2030
|
+
<parameter name="nmc" value="0"/>
|
|
2031
|
+
<parameter name="massd" value="2.000"/>
|
|
2032
|
+
</search_score_summary>
|
|
2033
|
+
</peptideprophet_result>
|
|
2034
|
+
</search_hit>
|
|
2035
|
+
</search_result>
|
|
2036
|
+
<search_result spectrum="020a.2346.2346.2" start_scan="2346" end_scan="2346" precursor_neutral_mass="1314.3920" assumed_charge="2" index="1570">
|
|
2037
|
+
<search_hit hit_rank="1" peptide="YFTPDWLDEK" peptide_prev_aa="R" peptide_next_aa="R" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="2" num_matched_ions=" 9" tot_num_ions=" 18" calc_neutral_pep_mass="1313.3920" massdiff="+1.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2038
|
+
<alternative_protein protein="gi|6321563|ref|NP_011640.1|" protein_descr="asparagine synthetase; Asn2p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
2039
|
+
<search_score name="xcorr" value="1.614"/>
|
|
2040
|
+
<search_score name="deltacn" value="0.303"/>
|
|
2041
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2042
|
+
<search_score name="spscore" value="270.0"/>
|
|
2043
|
+
<search_score name="sprank" value="6"/>
|
|
2044
|
+
<peptideprophet_result probability="0.0667" all_ntt_prob="(0.0000,0.0350,0.0667)">
|
|
2045
|
+
<search_score_summary>
|
|
2046
|
+
<parameter name="fval" value="1.8486"/>
|
|
2047
|
+
<parameter name="ntt" value="2"/>
|
|
2048
|
+
<parameter name="nmc" value="0"/>
|
|
2049
|
+
<parameter name="massd" value="1.000"/>
|
|
2050
|
+
</search_score_summary>
|
|
2051
|
+
</peptideprophet_result>
|
|
2052
|
+
</search_hit>
|
|
2053
|
+
</search_result>
|
|
2054
|
+
<search_result spectrum="020a.2351.2351.2" start_scan="2351" end_scan="2351" precursor_neutral_mass="1314.3920" assumed_charge="2" index="1571">
|
|
2055
|
+
<search_hit hit_rank="1" peptide="YFTPDWLDEK" peptide_prev_aa="R" peptide_next_aa="R" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="2" num_matched_ions=" 11" tot_num_ions=" 18" calc_neutral_pep_mass="1313.3920" massdiff="+1.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2056
|
+
<alternative_protein protein="gi|6321563|ref|NP_011640.1|" protein_descr="asparagine synthetase; Asn2p [Saccharomyces cerevisiae]" num_tol_term="2"/>
|
|
2057
|
+
<search_score name="xcorr" value="1.800"/>
|
|
2058
|
+
<search_score name="deltacn" value="0.334"/>
|
|
2059
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2060
|
+
<search_score name="spscore" value="429.4"/>
|
|
2061
|
+
<search_score name="sprank" value="2"/>
|
|
2062
|
+
<peptideprophet_result probability="0.3008" all_ntt_prob="(0.0000,0.1790,0.3008)">
|
|
2063
|
+
<search_score_summary>
|
|
2064
|
+
<parameter name="fval" value="2.6327"/>
|
|
2065
|
+
<parameter name="ntt" value="2"/>
|
|
2066
|
+
<parameter name="nmc" value="0"/>
|
|
2067
|
+
<parameter name="massd" value="1.000"/>
|
|
2068
|
+
</search_score_summary>
|
|
2069
|
+
</peptideprophet_result>
|
|
2070
|
+
</search_hit>
|
|
2071
|
+
</search_result>
|
|
2072
|
+
<search_result spectrum="020b.1016.1016.2" start_scan="1016" end_scan="1016" precursor_neutral_mass="1376.3920" assumed_charge="2" index="1763">
|
|
2073
|
+
<search_hit hit_rank="1" peptide="IPSTPIDYMAIR" peptide_prev_aa="R" peptide_next_aa="H" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 22" calc_neutral_pep_mass="1376.5920" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2074
|
+
<search_score name="xcorr" value="2.309"/>
|
|
2075
|
+
<search_score name="deltacn" value="0.383"/>
|
|
2076
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2077
|
+
<search_score name="spscore" value="353.5"/>
|
|
2078
|
+
<search_score name="sprank" value="1"/>
|
|
2079
|
+
<peptideprophet_result probability="0.9592" all_ntt_prob="(0.0000,0.9226,0.9592)">
|
|
2080
|
+
<search_score_summary>
|
|
2081
|
+
<parameter name="fval" value="3.7532"/>
|
|
2082
|
+
<parameter name="ntt" value="2"/>
|
|
2083
|
+
<parameter name="nmc" value="0"/>
|
|
2084
|
+
<parameter name="massd" value="-0.200"/>
|
|
2085
|
+
</search_score_summary>
|
|
2086
|
+
</peptideprophet_result>
|
|
2087
|
+
</search_hit>
|
|
2088
|
+
</search_result>
|
|
2089
|
+
<search_result spectrum="020b.2420.2420.2" start_scan="2420" end_scan="2420" precursor_neutral_mass="1693.7920" assumed_charge="2" index="1917">
|
|
2090
|
+
<search_hit hit_rank="1" peptide="YLDGMFAWTLYDAK" peptide_prev_aa="K" peptide_next_aa="Q" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 26" calc_neutral_pep_mass="1693.8920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2091
|
+
<search_score name="xcorr" value="2.915"/>
|
|
2092
|
+
<search_score name="deltacn" value="0.532"/>
|
|
2093
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2094
|
+
<search_score name="spscore" value="712.1"/>
|
|
2095
|
+
<search_score name="sprank" value="1"/>
|
|
2096
|
+
<peptideprophet_result probability="0.9973" all_ntt_prob="(0.0000,0.9947,0.9973)">
|
|
2097
|
+
<search_score_summary>
|
|
2098
|
+
<parameter name="fval" value="5.3806"/>
|
|
2099
|
+
<parameter name="ntt" value="2"/>
|
|
2100
|
+
<parameter name="nmc" value="0"/>
|
|
2101
|
+
<parameter name="massd" value="-0.100"/>
|
|
2102
|
+
</search_score_summary>
|
|
2103
|
+
</peptideprophet_result>
|
|
2104
|
+
</search_hit>
|
|
2105
|
+
</search_result>
|
|
2106
|
+
<search_result spectrum="020b.2436.2436.2" start_scan="2436" end_scan="2436" precursor_neutral_mass="1694.5920" assumed_charge="2" index="1923">
|
|
2107
|
+
<search_hit hit_rank="1" peptide="YLDGMFAWTLYDAK" peptide_prev_aa="K" peptide_next_aa="Q" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 10" tot_num_ions=" 26" calc_neutral_pep_mass="1693.8920" massdiff="+0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2108
|
+
<search_score name="xcorr" value="1.729"/>
|
|
2109
|
+
<search_score name="deltacn" value="0.286"/>
|
|
2110
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2111
|
+
<search_score name="spscore" value="160.7"/>
|
|
2112
|
+
<search_score name="sprank" value="2"/>
|
|
2113
|
+
<peptideprophet_result probability="0.2035" all_ntt_prob="(0.0000,0.1146,0.2035)">
|
|
2114
|
+
<search_score_summary>
|
|
2115
|
+
<parameter name="fval" value="1.9849"/>
|
|
2116
|
+
<parameter name="ntt" value="2"/>
|
|
2117
|
+
<parameter name="nmc" value="0"/>
|
|
2118
|
+
<parameter name="massd" value="0.700"/>
|
|
2119
|
+
</search_score_summary>
|
|
2120
|
+
</peptideprophet_result>
|
|
2121
|
+
</search_hit>
|
|
2122
|
+
</search_result>
|
|
2123
|
+
<search_result spectrum="060b.1264.1264.3" start_scan="1264" end_scan="1264" precursor_neutral_mass="2056.9919" assumed_charge="3" index="2941">
|
|
2124
|
+
<search_hit hit_rank="1" peptide="QKEQFSDGVGYSWIDGLK" peptide_prev_aa="R" peptide_next_aa="D" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 68" calc_neutral_pep_mass="2057.1919" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2125
|
+
<search_score name="xcorr" value="1.916"/>
|
|
2126
|
+
<search_score name="deltacn" value="0.229"/>
|
|
2127
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2128
|
+
<search_score name="spscore" value="264.8"/>
|
|
2129
|
+
<search_score name="sprank" value="31"/>
|
|
2130
|
+
<peptideprophet_result probability="0.1215" all_ntt_prob="(0.0000,0.0475,0.1215)">
|
|
2131
|
+
<search_score_summary>
|
|
2132
|
+
<parameter name="fval" value="1.5180"/>
|
|
2133
|
+
<parameter name="ntt" value="2"/>
|
|
2134
|
+
<parameter name="nmc" value="0"/>
|
|
2135
|
+
<parameter name="massd" value="-0.200"/>
|
|
2136
|
+
</search_score_summary>
|
|
2137
|
+
</peptideprophet_result>
|
|
2138
|
+
</search_hit>
|
|
2139
|
+
</search_result>
|
|
2140
|
+
<search_result spectrum="060b.1800.1800.3" start_scan="1800" end_scan="1800" precursor_neutral_mass="2448.0919" assumed_charge="3" index="3007">
|
|
2141
|
+
<search_hit hit_rank="1" peptide="AFDTTGEPDAKPYLPEEILWR" peptide_prev_aa="K" peptide_next_aa="Q" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 30" tot_num_ions=" 80" calc_neutral_pep_mass="2448.6919" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2142
|
+
<search_score name="xcorr" value="4.135"/>
|
|
2143
|
+
<search_score name="deltacn" value="0.571"/>
|
|
2144
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2145
|
+
<search_score name="spscore" value="1322.6"/>
|
|
2146
|
+
<search_score name="sprank" value="1"/>
|
|
2147
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
2148
|
+
<search_score_summary>
|
|
2149
|
+
<parameter name="fval" value="7.8793"/>
|
|
2150
|
+
<parameter name="ntt" value="2"/>
|
|
2151
|
+
<parameter name="nmc" value="1"/>
|
|
2152
|
+
<parameter name="massd" value="-0.600"/>
|
|
2153
|
+
</search_score_summary>
|
|
2154
|
+
</peptideprophet_result>
|
|
2155
|
+
</search_hit>
|
|
2156
|
+
</search_result>
|
|
2157
|
+
<search_result spectrum="060b.1804.1804.3" start_scan="1804" end_scan="1804" precursor_neutral_mass="2448.3919" assumed_charge="3" index="3008">
|
|
2158
|
+
<search_hit hit_rank="1" peptide="AFDTTGEPDAKPYLPEEILWR" peptide_prev_aa="K" peptide_next_aa="Q" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions=" 80" calc_neutral_pep_mass="2448.6919" massdiff="-0.3" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2159
|
+
<search_score name="xcorr" value="4.229"/>
|
|
2160
|
+
<search_score name="deltacn" value="0.547"/>
|
|
2161
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2162
|
+
<search_score name="spscore" value="699.7"/>
|
|
2163
|
+
<search_score name="sprank" value="1"/>
|
|
2164
|
+
<peptideprophet_result probability="0.9716" all_ntt_prob="(0.0000,0.9250,0.9716)">
|
|
2165
|
+
<search_score_summary>
|
|
2166
|
+
<parameter name="fval" value="7.6632"/>
|
|
2167
|
+
<parameter name="ntt" value="2"/>
|
|
2168
|
+
<parameter name="nmc" value="1"/>
|
|
2169
|
+
<parameter name="massd" value="-0.300"/>
|
|
2170
|
+
</search_score_summary>
|
|
2171
|
+
</peptideprophet_result>
|
|
2172
|
+
</search_hit>
|
|
2173
|
+
</search_result>
|
|
2174
|
+
<search_result spectrum="900c.962.962.3" start_scan="962" end_scan="962" precursor_neutral_mass="2744.2920" assumed_charge="3" index="4247">
|
|
2175
|
+
<search_hit hit_rank="1" peptide="LHTAGWTSLHSFAIGLPNAPDLQAAR" peptide_prev_aa="K" peptide_next_aa="K" protein="gi|6325403|ref|NP_015471.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions="100" calc_neutral_pep_mass="2745.0920" massdiff="-0.8" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="asparagine synthetase; Asn1p [Saccharomyces cerevisiae]">
|
|
2176
|
+
<search_score name="xcorr" value="2.079"/>
|
|
2177
|
+
<search_score name="deltacn" value="0.244"/>
|
|
2178
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2179
|
+
<search_score name="spscore" value="321.8"/>
|
|
2180
|
+
<search_score name="sprank" value="2"/>
|
|
2181
|
+
<peptideprophet_result probability="0.2253" all_ntt_prob="(0.0000,0.0949,0.2253)">
|
|
2182
|
+
<search_score_summary>
|
|
2183
|
+
<parameter name="fval" value="2.3278"/>
|
|
2184
|
+
<parameter name="ntt" value="2"/>
|
|
2185
|
+
<parameter name="nmc" value="0"/>
|
|
2186
|
+
<parameter name="massd" value="-0.800"/>
|
|
2187
|
+
</search_score_summary>
|
|
2188
|
+
</peptideprophet_result>
|
|
2189
|
+
</search_hit>
|
|
2190
|
+
</search_result>
|
|
2191
|
+
<search_result spectrum="005a.2447.2447.3" start_scan="2447" end_scan="2447" precursor_neutral_mass="1894.3920" assumed_charge="3" index="213">
|
|
2192
|
+
<search_hit hit_rank="1" peptide="LEDLSPSTHNMEVPVVK" peptide_prev_aa="K" peptide_next_aa="R" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions=" 64" calc_neutral_pep_mass="1895.1920" massdiff="-0.8" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2193
|
+
<search_score name="xcorr" value="2.608"/>
|
|
2194
|
+
<search_score name="deltacn" value="0.248"/>
|
|
2195
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2196
|
+
<search_score name="spscore" value="571.1"/>
|
|
2197
|
+
<search_score name="sprank" value="1"/>
|
|
2198
|
+
<peptideprophet_result probability="0.5829" all_ntt_prob="(0.0000,0.3349,0.5829)">
|
|
2199
|
+
<search_score_summary>
|
|
2200
|
+
<parameter name="fval" value="3.2456"/>
|
|
2201
|
+
<parameter name="ntt" value="2"/>
|
|
2202
|
+
<parameter name="nmc" value="0"/>
|
|
2203
|
+
<parameter name="massd" value="-0.800"/>
|
|
2204
|
+
</search_score_summary>
|
|
2205
|
+
</peptideprophet_result>
|
|
2206
|
+
</search_hit>
|
|
2207
|
+
</search_result>
|
|
2208
|
+
<search_result spectrum="005a.2453.2453.3" start_scan="2453" end_scan="2453" precursor_neutral_mass="1894.9920" assumed_charge="3" index="214">
|
|
2209
|
+
<search_hit hit_rank="1" peptide="LEDLSPSTHNMEVPVVK" peptide_prev_aa="K" peptide_next_aa="R" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 64" calc_neutral_pep_mass="1895.1920" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2210
|
+
<search_score name="xcorr" value="2.577"/>
|
|
2211
|
+
<search_score name="deltacn" value="0.304"/>
|
|
2212
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2213
|
+
<search_score name="spscore" value="386.6"/>
|
|
2214
|
+
<search_score name="sprank" value="2"/>
|
|
2215
|
+
<peptideprophet_result probability="0.8486" all_ntt_prob="(0.0000,0.6689,0.8486)">
|
|
2216
|
+
<search_score_summary>
|
|
2217
|
+
<parameter name="fval" value="3.7026"/>
|
|
2218
|
+
<parameter name="ntt" value="2"/>
|
|
2219
|
+
<parameter name="nmc" value="0"/>
|
|
2220
|
+
<parameter name="massd" value="-0.200"/>
|
|
2221
|
+
</search_score_summary>
|
|
2222
|
+
</peptideprophet_result>
|
|
2223
|
+
</search_hit>
|
|
2224
|
+
</search_result>
|
|
2225
|
+
<search_result spectrum="005c.945.945.2" start_scan="945" end_scan="945" precursor_neutral_mass="1866.0920" assumed_charge="2" index="1412">
|
|
2226
|
+
<search_hit hit_rank="1" peptide="APEGELGDSLQTAFDEGK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 34" calc_neutral_pep_mass="1863.8920" massdiff="+2.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2227
|
+
<search_score name="xcorr" value="4.436"/>
|
|
2228
|
+
<search_score name="deltacn" value="0.638"/>
|
|
2229
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2230
|
+
<search_score name="spscore" value="1266.5"/>
|
|
2231
|
+
<search_score name="sprank" value="1"/>
|
|
2232
|
+
<peptideprophet_result probability="0.9989" all_ntt_prob="(0.0000,0.9978,0.9989)">
|
|
2233
|
+
<search_score_summary>
|
|
2234
|
+
<parameter name="fval" value="7.2437"/>
|
|
2235
|
+
<parameter name="ntt" value="2"/>
|
|
2236
|
+
<parameter name="nmc" value="0"/>
|
|
2237
|
+
<parameter name="massd" value="2.200"/>
|
|
2238
|
+
</search_score_summary>
|
|
2239
|
+
</peptideprophet_result>
|
|
2240
|
+
</search_hit>
|
|
2241
|
+
</search_result>
|
|
2242
|
+
<search_result spectrum="005c.952.952.2" start_scan="952" end_scan="952" precursor_neutral_mass="1863.2920" assumed_charge="2" index="1415">
|
|
2243
|
+
<search_hit hit_rank="1" peptide="APEGELGDSLQTAFDEGK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 34" calc_neutral_pep_mass="1863.8920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2244
|
+
<search_score name="xcorr" value="5.270"/>
|
|
2245
|
+
<search_score name="deltacn" value="0.629"/>
|
|
2246
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2247
|
+
<search_score name="spscore" value="1504.1"/>
|
|
2248
|
+
<search_score name="sprank" value="1"/>
|
|
2249
|
+
<peptideprophet_result probability="0.9599" all_ntt_prob="(0.0000,0.9238,0.9599)">
|
|
2250
|
+
<search_score_summary>
|
|
2251
|
+
<parameter name="fval" value="7.6489"/>
|
|
2252
|
+
<parameter name="ntt" value="2"/>
|
|
2253
|
+
<parameter name="nmc" value="0"/>
|
|
2254
|
+
<parameter name="massd" value="-0.600"/>
|
|
2255
|
+
</search_score_summary>
|
|
2256
|
+
</peptideprophet_result>
|
|
2257
|
+
</search_hit>
|
|
2258
|
+
</search_result>
|
|
2259
|
+
<search_result spectrum="020c.2320.2320.2" start_scan="2320" end_scan="2320" precursor_neutral_mass="2646.4921" assumed_charge="2" index="2283">
|
|
2260
|
+
<search_hit hit_rank="1" peptide="NEYQLLDIDDGFLSLMNMDGDTK" peptide_prev_aa="R" peptide_next_aa="D" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 44" calc_neutral_pep_mass="2647.8921" massdiff="-1.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2261
|
+
<search_score name="xcorr" value="3.708"/>
|
|
2262
|
+
<search_score name="deltacn" value="0.514"/>
|
|
2263
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2264
|
+
<search_score name="spscore" value="966.0"/>
|
|
2265
|
+
<search_score name="sprank" value="1"/>
|
|
2266
|
+
<peptideprophet_result probability="0.8585" all_ntt_prob="(0.0000,0.7546,0.8585)">
|
|
2267
|
+
<search_score_summary>
|
|
2268
|
+
<parameter name="fval" value="5.8463"/>
|
|
2269
|
+
<parameter name="ntt" value="2"/>
|
|
2270
|
+
<parameter name="nmc" value="0"/>
|
|
2271
|
+
<parameter name="massd" value="-1.400"/>
|
|
2272
|
+
</search_score_summary>
|
|
2273
|
+
</peptideprophet_result>
|
|
2274
|
+
</search_hit>
|
|
2275
|
+
</search_result>
|
|
2276
|
+
<search_result spectrum="060a.1529.1529.3" start_scan="1529" end_scan="1529" precursor_neutral_mass="2022.5920" assumed_charge="3" index="2528">
|
|
2277
|
+
<search_hit hit_rank="1" peptide="KLEDLSPSTHNMEVPVVK" peptide_prev_aa="K" peptide_next_aa="R" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 30" tot_num_ions=" 68" calc_neutral_pep_mass="2023.2920" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2278
|
+
<search_score name="xcorr" value="4.266"/>
|
|
2279
|
+
<search_score name="deltacn" value="0.517"/>
|
|
2280
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2281
|
+
<search_score name="spscore" value="1383.1"/>
|
|
2282
|
+
<search_score name="sprank" value="1"/>
|
|
2283
|
+
<peptideprophet_result probability="0.9918" all_ntt_prob="(0.0000,0.9777,0.9918)">
|
|
2284
|
+
<search_score_summary>
|
|
2285
|
+
<parameter name="fval" value="7.4724"/>
|
|
2286
|
+
<parameter name="ntt" value="2"/>
|
|
2287
|
+
<parameter name="nmc" value="0"/>
|
|
2288
|
+
<parameter name="massd" value="-0.700"/>
|
|
2289
|
+
</search_score_summary>
|
|
2290
|
+
</peptideprophet_result>
|
|
2291
|
+
</search_hit>
|
|
2292
|
+
</search_result>
|
|
2293
|
+
<search_result spectrum="060a.3084.3084.2" start_scan="3084" end_scan="3084" precursor_neutral_mass="1312.7920" assumed_charge="2" index="2717">
|
|
2294
|
+
<search_hit hit_rank="1" peptide="VHLVAIDIFTGK" peptide_prev_aa="K" peptide_next_aa="K" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 22" calc_neutral_pep_mass="1312.5920" massdiff="+0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2295
|
+
<search_score name="xcorr" value="2.297"/>
|
|
2296
|
+
<search_score name="deltacn" value="0.391"/>
|
|
2297
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2298
|
+
<search_score name="spscore" value="614.2"/>
|
|
2299
|
+
<search_score name="sprank" value="1"/>
|
|
2300
|
+
<peptideprophet_result probability="0.9331" all_ntt_prob="(0.0000,0.8761,0.9331)">
|
|
2301
|
+
<search_score_summary>
|
|
2302
|
+
<parameter name="fval" value="3.7965"/>
|
|
2303
|
+
<parameter name="ntt" value="2"/>
|
|
2304
|
+
<parameter name="nmc" value="0"/>
|
|
2305
|
+
<parameter name="massd" value="0.200"/>
|
|
2306
|
+
</search_score_summary>
|
|
2307
|
+
</peptideprophet_result>
|
|
2308
|
+
</search_hit>
|
|
2309
|
+
</search_result>
|
|
2310
|
+
<search_result spectrum="060a.3088.3088.2" start_scan="3088" end_scan="3088" precursor_neutral_mass="1313.1920" assumed_charge="2" index="2719">
|
|
2311
|
+
<search_hit hit_rank="1" peptide="VHLVAIDIFTGK" peptide_prev_aa="K" peptide_next_aa="K" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 22" calc_neutral_pep_mass="1312.5920" massdiff="+0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2312
|
+
<search_score name="xcorr" value="2.603"/>
|
|
2313
|
+
<search_score name="deltacn" value="0.531"/>
|
|
2314
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2315
|
+
<search_score name="spscore" value="996.5"/>
|
|
2316
|
+
<search_score name="sprank" value="1"/>
|
|
2317
|
+
<peptideprophet_result probability="0.9934" all_ntt_prob="(0.0000,0.9870,0.9934)">
|
|
2318
|
+
<search_score_summary>
|
|
2319
|
+
<parameter name="fval" value="5.1868"/>
|
|
2320
|
+
<parameter name="ntt" value="2"/>
|
|
2321
|
+
<parameter name="nmc" value="0"/>
|
|
2322
|
+
<parameter name="massd" value="0.600"/>
|
|
2323
|
+
</search_score_summary>
|
|
2324
|
+
</peptideprophet_result>
|
|
2325
|
+
</search_hit>
|
|
2326
|
+
</search_result>
|
|
2327
|
+
<search_result spectrum="060c.1791.1791.3" start_scan="1791" end_scan="1791" precursor_neutral_mass="2805.0920" assumed_charge="3" index="3430">
|
|
2328
|
+
<search_hit hit_rank="1" peptide="RNEYQLLDIDDGFLSLMNMDGDTK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 27" tot_num_ions=" 92" calc_neutral_pep_mass="2804.0920" massdiff="+1.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2329
|
+
<search_score name="xcorr" value="4.153"/>
|
|
2330
|
+
<search_score name="deltacn" value="0.364"/>
|
|
2331
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2332
|
+
<search_score name="spscore" value="1133.2"/>
|
|
2333
|
+
<search_score name="sprank" value="1"/>
|
|
2334
|
+
<peptideprophet_result probability="0.9763" all_ntt_prob="(0.0000,0.9369,0.9763)">
|
|
2335
|
+
<search_score_summary>
|
|
2336
|
+
<parameter name="fval" value="5.4579"/>
|
|
2337
|
+
<parameter name="ntt" value="2"/>
|
|
2338
|
+
<parameter name="nmc" value="0"/>
|
|
2339
|
+
<parameter name="massd" value="1.000"/>
|
|
2340
|
+
</search_score_summary>
|
|
2341
|
+
</peptideprophet_result>
|
|
2342
|
+
</search_hit>
|
|
2343
|
+
</search_result>
|
|
2344
|
+
<search_result spectrum="060c.1859.1859.3" start_scan="1859" end_scan="1859" precursor_neutral_mass="3104.1921" assumed_charge="3" index="3439">
|
|
2345
|
+
<search_hit hit_rank="1" peptide="NEYQLLDIDDGFLSLMNMDGDTKDDVK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 32" tot_num_ions="104" calc_neutral_pep_mass="3105.3921" massdiff="-1.2" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2346
|
+
<search_score name="xcorr" value="4.353"/>
|
|
2347
|
+
<search_score name="deltacn" value="0.493"/>
|
|
2348
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2349
|
+
<search_score name="spscore" value="825.1"/>
|
|
2350
|
+
<search_score name="sprank" value="1"/>
|
|
2351
|
+
<peptideprophet_result probability="0.9914" all_ntt_prob="(0.0000,0.9765,0.9914)">
|
|
2352
|
+
<search_score_summary>
|
|
2353
|
+
<parameter name="fval" value="6.9904"/>
|
|
2354
|
+
<parameter name="ntt" value="2"/>
|
|
2355
|
+
<parameter name="nmc" value="1"/>
|
|
2356
|
+
<parameter name="massd" value="-1.200"/>
|
|
2357
|
+
</search_score_summary>
|
|
2358
|
+
</peptideprophet_result>
|
|
2359
|
+
</search_hit>
|
|
2360
|
+
</search_result>
|
|
2361
|
+
<search_result spectrum="060c.1871.1871.3" start_scan="1871" end_scan="1871" precursor_neutral_mass="3104.4921" assumed_charge="3" index="3441">
|
|
2362
|
+
<search_hit hit_rank="1" peptide="NEYQLLDIDDGFLSLMNMDGDTKDDVK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320801|ref|NP_010880.1|" num_tot_proteins="1" num_matched_ions=" 27" tot_num_ions="104" calc_neutral_pep_mass="3105.3921" massdiff="-0.9" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="Translation initiation factor eIF-5A; Hyp2p [Saccharomyces cerevisiae]">
|
|
2363
|
+
<search_score name="xcorr" value="3.518"/>
|
|
2364
|
+
<search_score name="deltacn" value="0.421"/>
|
|
2365
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2366
|
+
<search_score name="spscore" value="618.7"/>
|
|
2367
|
+
<search_score name="sprank" value="1"/>
|
|
2368
|
+
<peptideprophet_result probability="0.9353" all_ntt_prob="(0.0000,0.8388,0.9353)">
|
|
2369
|
+
<search_score_summary>
|
|
2370
|
+
<parameter name="fval" value="5.6853"/>
|
|
2371
|
+
<parameter name="ntt" value="2"/>
|
|
2372
|
+
<parameter name="nmc" value="1"/>
|
|
2373
|
+
<parameter name="massd" value="-0.900"/>
|
|
2374
|
+
</search_score_summary>
|
|
2375
|
+
</peptideprophet_result>
|
|
2376
|
+
</search_hit>
|
|
2377
|
+
</search_result>
|
|
2378
|
+
<search_result spectrum="005a.3986.3986.2" start_scan="3986" end_scan="3986" precursor_neutral_mass="1217.5920" assumed_charge="2" index="394">
|
|
2379
|
+
<search_hit hit_rank="1" peptide="AGLNVIENFLK" peptide_prev_aa="K" peptide_next_aa="Q" protein="gi|6319725|ref|NP_009807.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 20" calc_neutral_pep_mass="1217.3920" massdiff="+0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="glutamine amidotransferase:cyclase, also called imidazole glycerol phosphate synthase; His7p [Saccharomyces cerevisiae]">
|
|
2380
|
+
<search_score name="xcorr" value="2.472"/>
|
|
2381
|
+
<search_score name="deltacn" value="0.399"/>
|
|
2382
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2383
|
+
<search_score name="spscore" value="475.2"/>
|
|
2384
|
+
<search_score name="sprank" value="1"/>
|
|
2385
|
+
<peptideprophet_result probability="0.9667" all_ntt_prob="(0.0000,0.9363,0.9667)">
|
|
2386
|
+
<search_score_summary>
|
|
2387
|
+
<parameter name="fval" value="4.1444"/>
|
|
2388
|
+
<parameter name="ntt" value="2"/>
|
|
2389
|
+
<parameter name="nmc" value="0"/>
|
|
2390
|
+
<parameter name="massd" value="0.200"/>
|
|
2391
|
+
</search_score_summary>
|
|
2392
|
+
</peptideprophet_result>
|
|
2393
|
+
</search_hit>
|
|
2394
|
+
</search_result>
|
|
2395
|
+
<search_result spectrum="020a.3314.3314.2" start_scan="3314" end_scan="3314" precursor_neutral_mass="1217.1920" assumed_charge="2" index="1671">
|
|
2396
|
+
<search_hit hit_rank="1" peptide="AGLNVIENFLK" peptide_prev_aa="K" peptide_next_aa="Q" protein="gi|6319725|ref|NP_009807.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 20" calc_neutral_pep_mass="1217.3920" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="glutamine amidotransferase:cyclase, also called imidazole glycerol phosphate synthase; His7p [Saccharomyces cerevisiae]">
|
|
2397
|
+
<search_score name="xcorr" value="1.875"/>
|
|
2398
|
+
<search_score name="deltacn" value="0.335"/>
|
|
2399
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2400
|
+
<search_score name="spscore" value="220.2"/>
|
|
2401
|
+
<search_score name="sprank" value="1"/>
|
|
2402
|
+
<peptideprophet_result probability="0.7644" all_ntt_prob="(0.0000,0.6219,0.7644)">
|
|
2403
|
+
<search_score_summary>
|
|
2404
|
+
<parameter name="fval" value="2.8445"/>
|
|
2405
|
+
<parameter name="ntt" value="2"/>
|
|
2406
|
+
<parameter name="nmc" value="0"/>
|
|
2407
|
+
<parameter name="massd" value="-0.200"/>
|
|
2408
|
+
</search_score_summary>
|
|
2409
|
+
</peptideprophet_result>
|
|
2410
|
+
</search_hit>
|
|
2411
|
+
</search_result>
|
|
2412
|
+
<search_result spectrum="020b.2147.2147.2" start_scan="2147" end_scan="2147" precursor_neutral_mass="1378.4920" assumed_charge="2" index="1895">
|
|
2413
|
+
<search_hit hit_rank="1" peptide="IPALEVASLYFR" peptide_prev_aa="K" peptide_next_aa="S" protein="gi|6319725|ref|NP_009807.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 22" calc_neutral_pep_mass="1378.5920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="glutamine amidotransferase:cyclase, also called imidazole glycerol phosphate synthase; His7p [Saccharomyces cerevisiae]">
|
|
2414
|
+
<search_score name="xcorr" value="3.221"/>
|
|
2415
|
+
<search_score name="deltacn" value="0.598"/>
|
|
2416
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2417
|
+
<search_score name="spscore" value="1281.8"/>
|
|
2418
|
+
<search_score name="sprank" value="1"/>
|
|
2419
|
+
<peptideprophet_result probability="0.9983" all_ntt_prob="(0.0000,0.9966,0.9983)">
|
|
2420
|
+
<search_score_summary>
|
|
2421
|
+
<parameter name="fval" value="6.3005"/>
|
|
2422
|
+
<parameter name="ntt" value="2"/>
|
|
2423
|
+
<parameter name="nmc" value="0"/>
|
|
2424
|
+
<parameter name="massd" value="-0.100"/>
|
|
2425
|
+
</search_score_summary>
|
|
2426
|
+
</peptideprophet_result>
|
|
2427
|
+
</search_hit>
|
|
2428
|
+
</search_result>
|
|
2429
|
+
<search_result spectrum="060b.1812.1812.3" start_scan="1812" end_scan="1812" precursor_neutral_mass="2197.5919" assumed_charge="3" index="3010">
|
|
2430
|
+
<search_hit hit_rank="1" peptide="IPVIASSGAGVPEHFEEAFLK" peptide_prev_aa="K" peptide_next_aa="T" protein="gi|6319725|ref|NP_009807.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 80" calc_neutral_pep_mass="2198.4919" massdiff="-0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="glutamine amidotransferase:cyclase, also called imidazole glycerol phosphate synthase; His7p [Saccharomyces cerevisiae]">
|
|
2431
|
+
<search_score name="xcorr" value="2.520"/>
|
|
2432
|
+
<search_score name="deltacn" value="0.382"/>
|
|
2433
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2434
|
+
<search_score name="spscore" value="350.7"/>
|
|
2435
|
+
<search_score name="sprank" value="3"/>
|
|
2436
|
+
<peptideprophet_result probability="0.8992" all_ntt_prob="(0.0000,0.7628,0.8992)">
|
|
2437
|
+
<search_score_summary>
|
|
2438
|
+
<parameter name="fval" value="4.3289"/>
|
|
2439
|
+
<parameter name="ntt" value="2"/>
|
|
2440
|
+
<parameter name="nmc" value="0"/>
|
|
2441
|
+
<parameter name="massd" value="-0.900"/>
|
|
2442
|
+
</search_score_summary>
|
|
2443
|
+
</peptideprophet_result>
|
|
2444
|
+
</search_hit>
|
|
2445
|
+
</search_result>
|
|
2446
|
+
<search_result spectrum="900b.2499.2499.3" start_scan="2499" end_scan="2499" precursor_neutral_mass="2143.8921" assumed_charge="3" index="3966">
|
|
2447
|
+
<search_hit hit_rank="1" peptide="LILPGVGNYGHFVDNLFNR" peptide_prev_aa="R" peptide_next_aa="G" protein="gi|6319725|ref|NP_009807.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 72" calc_neutral_pep_mass="2145.3921" massdiff="-1.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="glutamine amidotransferase:cyclase, also called imidazole glycerol phosphate synthase; His7p [Saccharomyces cerevisiae]">
|
|
2448
|
+
<search_score name="xcorr" value="2.381"/>
|
|
2449
|
+
<search_score name="deltacn" value="0.445"/>
|
|
2450
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2451
|
+
<search_score name="spscore" value="292.5"/>
|
|
2452
|
+
<search_score name="sprank" value="2"/>
|
|
2453
|
+
<peptideprophet_result probability="0.9669" all_ntt_prob="(0.0000,0.9132,0.9669)">
|
|
2454
|
+
<search_score_summary>
|
|
2455
|
+
<parameter name="fval" value="5.0339"/>
|
|
2456
|
+
<parameter name="ntt" value="2"/>
|
|
2457
|
+
<parameter name="nmc" value="0"/>
|
|
2458
|
+
<parameter name="massd" value="-1.500"/>
|
|
2459
|
+
</search_score_summary>
|
|
2460
|
+
</peptideprophet_result>
|
|
2461
|
+
</search_hit>
|
|
2462
|
+
</search_result>
|
|
2463
|
+
<search_result spectrum="005a.1961.1961.2" start_scan="1961" end_scan="1961" precursor_neutral_mass="945.5920" assumed_charge="2" index="148">
|
|
2464
|
+
<search_hit hit_rank="1" peptide="AVFPSIVGR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 11" tot_num_ions=" 16" calc_neutral_pep_mass="945.0920" massdiff="+0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2465
|
+
<search_score name="xcorr" value="1.645"/>
|
|
2466
|
+
<search_score name="deltacn" value="0.350"/>
|
|
2467
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2468
|
+
<search_score name="spscore" value="403.7"/>
|
|
2469
|
+
<search_score name="sprank" value="7"/>
|
|
2470
|
+
<peptideprophet_result probability="0.3339" all_ntt_prob="(0.0000,0.2026,0.3339)">
|
|
2471
|
+
<search_score_summary>
|
|
2472
|
+
<parameter name="fval" value="2.2772"/>
|
|
2473
|
+
<parameter name="ntt" value="2"/>
|
|
2474
|
+
<parameter name="nmc" value="0"/>
|
|
2475
|
+
<parameter name="massd" value="0.500"/>
|
|
2476
|
+
</search_score_summary>
|
|
2477
|
+
</peptideprophet_result>
|
|
2478
|
+
</search_hit>
|
|
2479
|
+
</search_result>
|
|
2480
|
+
<search_result spectrum="005a.1974.1974.2" start_scan="1974" end_scan="1974" precursor_neutral_mass="944.5920" assumed_charge="2" index="149">
|
|
2481
|
+
<search_hit hit_rank="1" peptide="AVFPSIVGR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 16" calc_neutral_pep_mass="945.0920" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2482
|
+
<search_score name="xcorr" value="2.183"/>
|
|
2483
|
+
<search_score name="deltacn" value="0.279"/>
|
|
2484
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2485
|
+
<search_score name="spscore" value="659.9"/>
|
|
2486
|
+
<search_score name="sprank" value="1"/>
|
|
2487
|
+
<peptideprophet_result probability="0.8384" all_ntt_prob="(0.0000,0.7244,0.8384)">
|
|
2488
|
+
<search_score_summary>
|
|
2489
|
+
<parameter name="fval" value="3.0554"/>
|
|
2490
|
+
<parameter name="ntt" value="2"/>
|
|
2491
|
+
<parameter name="nmc" value="0"/>
|
|
2492
|
+
<parameter name="massd" value="-0.500"/>
|
|
2493
|
+
</search_score_summary>
|
|
2494
|
+
</peptideprophet_result>
|
|
2495
|
+
</search_hit>
|
|
2496
|
+
</search_result>
|
|
2497
|
+
<search_result spectrum="005a.306.306.2" start_scan="306" end_scan="306" precursor_neutral_mass="1118.7920" assumed_charge="2" index="284">
|
|
2498
|
+
<search_hit hit_rank="1" peptide="GYSFSTTAER" peptide_prev_aa="R" peptide_next_aa="E" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 18" calc_neutral_pep_mass="1118.1920" massdiff="+0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2499
|
+
<search_score name="xcorr" value="1.980"/>
|
|
2500
|
+
<search_score name="deltacn" value="0.469"/>
|
|
2501
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2502
|
+
<search_score name="spscore" value="579.7"/>
|
|
2503
|
+
<search_score name="sprank" value="1"/>
|
|
2504
|
+
<peptideprophet_result probability="0.9608" all_ntt_prob="(0.0000,0.9254,0.9608)">
|
|
2505
|
+
<search_score_summary>
|
|
2506
|
+
<parameter name="fval" value="4.0543"/>
|
|
2507
|
+
<parameter name="ntt" value="2"/>
|
|
2508
|
+
<parameter name="nmc" value="0"/>
|
|
2509
|
+
<parameter name="massd" value="0.600"/>
|
|
2510
|
+
</search_score_summary>
|
|
2511
|
+
</peptideprophet_result>
|
|
2512
|
+
</search_hit>
|
|
2513
|
+
</search_result>
|
|
2514
|
+
<search_result spectrum="005a.3110.3110.3" start_scan="3110" end_scan="3110" precursor_neutral_mass="1947.3920" assumed_charge="3" index="288">
|
|
2515
|
+
<search_hit hit_rank="1" peptide="YPIEHGIVTNWDDMEK" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions=" 60" calc_neutral_pep_mass="1947.0920" massdiff="+0.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2516
|
+
<search_score name="xcorr" value="3.658"/>
|
|
2517
|
+
<search_score name="deltacn" value="0.538"/>
|
|
2518
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2519
|
+
<search_score name="spscore" value="1226.7"/>
|
|
2520
|
+
<search_score name="sprank" value="1"/>
|
|
2521
|
+
<peptideprophet_result probability="0.9986" all_ntt_prob="(0.0000,0.9961,0.9986)">
|
|
2522
|
+
<search_score_summary>
|
|
2523
|
+
<parameter name="fval" value="7.4165"/>
|
|
2524
|
+
<parameter name="ntt" value="2"/>
|
|
2525
|
+
<parameter name="nmc" value="0"/>
|
|
2526
|
+
<parameter name="massd" value="0.300"/>
|
|
2527
|
+
</search_score_summary>
|
|
2528
|
+
</peptideprophet_result>
|
|
2529
|
+
</search_hit>
|
|
2530
|
+
</search_result>
|
|
2531
|
+
<search_result spectrum="005c.347.347.2" start_scan="347" end_scan="347" precursor_neutral_mass="1973.2920" assumed_charge="2" index="1252">
|
|
2532
|
+
<search_hit hit_rank="1" peptide="VAPEEHPVLLTEAPMNPK" peptide_prev_aa="R" peptide_next_aa="S" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 34" calc_neutral_pep_mass="1972.2920" massdiff="+1.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2533
|
+
<search_score name="xcorr" value="2.143"/>
|
|
2534
|
+
<search_score name="deltacn" value="0.510"/>
|
|
2535
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2536
|
+
<search_score name="spscore" value="218.6"/>
|
|
2537
|
+
<search_score name="sprank" value="1"/>
|
|
2538
|
+
<peptideprophet_result probability="0.9416" all_ntt_prob="(0.0000,0.8909,0.9416)">
|
|
2539
|
+
<search_score_summary>
|
|
2540
|
+
<parameter name="fval" value="4.3178"/>
|
|
2541
|
+
<parameter name="ntt" value="2"/>
|
|
2542
|
+
<parameter name="nmc" value="0"/>
|
|
2543
|
+
<parameter name="massd" value="1.000"/>
|
|
2544
|
+
</search_score_summary>
|
|
2545
|
+
</peptideprophet_result>
|
|
2546
|
+
</search_hit>
|
|
2547
|
+
</search_result>
|
|
2548
|
+
<search_result spectrum="020a.1521.1521.2" start_scan="1521" end_scan="1521" precursor_neutral_mass="944.7920" assumed_charge="2" index="1475">
|
|
2549
|
+
<search_hit hit_rank="1" peptide="AVFPSIVGR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 11" tot_num_ions=" 16" calc_neutral_pep_mass="945.0920" massdiff="-0.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2550
|
+
<search_score name="xcorr" value="1.902"/>
|
|
2551
|
+
<search_score name="deltacn" value="0.371"/>
|
|
2552
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2553
|
+
<search_score name="spscore" value="440.6"/>
|
|
2554
|
+
<search_score name="sprank" value="1"/>
|
|
2555
|
+
<peptideprophet_result probability="0.8956" all_ntt_prob="(0.0000,0.8129,0.8956)">
|
|
2556
|
+
<search_score_summary>
|
|
2557
|
+
<parameter name="fval" value="3.2852"/>
|
|
2558
|
+
<parameter name="ntt" value="2"/>
|
|
2559
|
+
<parameter name="nmc" value="0"/>
|
|
2560
|
+
<parameter name="massd" value="-0.300"/>
|
|
2561
|
+
</search_score_summary>
|
|
2562
|
+
</peptideprophet_result>
|
|
2563
|
+
</search_hit>
|
|
2564
|
+
</search_result>
|
|
2565
|
+
<search_result spectrum="060a.2231.2231.3" start_scan="2231" end_scan="2231" precursor_neutral_mass="1948.7920" assumed_charge="3" index="2617">
|
|
2566
|
+
<search_hit hit_rank="1" peptide="YPIEHGIVTNWDDMEK" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 26" tot_num_ions=" 60" calc_neutral_pep_mass="1947.0920" massdiff="+1.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2567
|
+
<search_score name="xcorr" value="3.473"/>
|
|
2568
|
+
<search_score name="deltacn" value="0.447"/>
|
|
2569
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2570
|
+
<search_score name="spscore" value="1260.6"/>
|
|
2571
|
+
<search_score name="sprank" value="1"/>
|
|
2572
|
+
<peptideprophet_result probability="0.9907" all_ntt_prob="(0.0000,0.9745,0.9907)">
|
|
2573
|
+
<search_score_summary>
|
|
2574
|
+
<parameter name="fval" value="6.2583"/>
|
|
2575
|
+
<parameter name="ntt" value="2"/>
|
|
2576
|
+
<parameter name="nmc" value="0"/>
|
|
2577
|
+
<parameter name="massd" value="1.700"/>
|
|
2578
|
+
</search_score_summary>
|
|
2579
|
+
</peptideprophet_result>
|
|
2580
|
+
</search_hit>
|
|
2581
|
+
</search_result>
|
|
2582
|
+
<search_result spectrum="060a.2236.2236.3" start_scan="2236" end_scan="2236" precursor_neutral_mass="1944.7920" assumed_charge="3" index="2618">
|
|
2583
|
+
<search_hit hit_rank="1" peptide="YPIEHGIVTNWDDMEK" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 26" tot_num_ions=" 60" calc_neutral_pep_mass="1947.0920" massdiff="-2.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2584
|
+
<search_score name="xcorr" value="2.980"/>
|
|
2585
|
+
<search_score name="deltacn" value="0.337"/>
|
|
2586
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2587
|
+
<search_score name="spscore" value="1334.3"/>
|
|
2588
|
+
<search_score name="sprank" value="1"/>
|
|
2589
|
+
<peptideprophet_result probability="0.6848" all_ntt_prob="(0.0000,0.4391,0.6848)">
|
|
2590
|
+
<search_score_summary>
|
|
2591
|
+
<parameter name="fval" value="4.6260"/>
|
|
2592
|
+
<parameter name="ntt" value="2"/>
|
|
2593
|
+
<parameter name="nmc" value="0"/>
|
|
2594
|
+
<parameter name="massd" value="-2.300"/>
|
|
2595
|
+
</search_score_summary>
|
|
2596
|
+
</peptideprophet_result>
|
|
2597
|
+
</search_hit>
|
|
2598
|
+
</search_result>
|
|
2599
|
+
<search_result spectrum="060a.263.263.2" start_scan="263" end_scan="263" precursor_neutral_mass="1185.1920" assumed_charge="2" index="2663">
|
|
2600
|
+
<search_hit hit_rank="1" peptide="HQGIMVGMGQK" peptide_prev_aa="R" peptide_next_aa="D" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 20" calc_neutral_pep_mass="1185.3920" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2601
|
+
<search_score name="xcorr" value="2.631"/>
|
|
2602
|
+
<search_score name="deltacn" value="0.540"/>
|
|
2603
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2604
|
+
<search_score name="spscore" value="807.4"/>
|
|
2605
|
+
<search_score name="sprank" value="1"/>
|
|
2606
|
+
<peptideprophet_result probability="0.9891" all_ntt_prob="(0.0000,0.9788,0.9891)">
|
|
2607
|
+
<search_score_summary>
|
|
2608
|
+
<parameter name="fval" value="5.3637"/>
|
|
2609
|
+
<parameter name="ntt" value="2"/>
|
|
2610
|
+
<parameter name="nmc" value="0"/>
|
|
2611
|
+
<parameter name="massd" value="-0.200"/>
|
|
2612
|
+
</search_score_summary>
|
|
2613
|
+
</peptideprophet_result>
|
|
2614
|
+
</search_hit>
|
|
2615
|
+
</search_result>
|
|
2616
|
+
<search_result spectrum="060a.267.267.2" start_scan="267" end_scan="267" precursor_neutral_mass="1184.7920" assumed_charge="2" index="2670">
|
|
2617
|
+
<search_hit hit_rank="1" peptide="HQGIMVGMGQK" peptide_prev_aa="R" peptide_next_aa="D" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 20" calc_neutral_pep_mass="1185.3920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2618
|
+
<search_score name="xcorr" value="2.957"/>
|
|
2619
|
+
<search_score name="deltacn" value="0.572"/>
|
|
2620
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2621
|
+
<search_score name="spscore" value="1027.3"/>
|
|
2622
|
+
<search_score name="sprank" value="1"/>
|
|
2623
|
+
<peptideprophet_result probability="0.9950" all_ntt_prob="(0.0000,0.9901,0.9950)">
|
|
2624
|
+
<search_score_summary>
|
|
2625
|
+
<parameter name="fval" value="5.9493"/>
|
|
2626
|
+
<parameter name="ntt" value="2"/>
|
|
2627
|
+
<parameter name="nmc" value="0"/>
|
|
2628
|
+
<parameter name="massd" value="-0.600"/>
|
|
2629
|
+
</search_score_summary>
|
|
2630
|
+
</peptideprophet_result>
|
|
2631
|
+
</search_hit>
|
|
2632
|
+
</search_result>
|
|
2633
|
+
<search_result spectrum="060c.1257.1257.3" start_scan="1257" end_scan="1257" precursor_neutral_mass="3105.4920" assumed_charge="3" index="3371">
|
|
2634
|
+
<search_hit hit_rank="1" peptide="TTGIVLDSGDGVTHVVPIYAGFSLPHAILR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions="116" calc_neutral_pep_mass="3106.5920" massdiff="-1.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2635
|
+
<search_score name="xcorr" value="2.520"/>
|
|
2636
|
+
<search_score name="deltacn" value="0.205"/>
|
|
2637
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2638
|
+
<search_score name="spscore" value="352.9"/>
|
|
2639
|
+
<search_score name="sprank" value="1"/>
|
|
2640
|
+
<peptideprophet_result probability="0.2730" all_ntt_prob="(0.0000,0.1192,0.2730)">
|
|
2641
|
+
<search_score_summary>
|
|
2642
|
+
<parameter name="fval" value="2.4784"/>
|
|
2643
|
+
<parameter name="ntt" value="2"/>
|
|
2644
|
+
<parameter name="nmc" value="0"/>
|
|
2645
|
+
<parameter name="massd" value="-1.100"/>
|
|
2646
|
+
</search_score_summary>
|
|
2647
|
+
</peptideprophet_result>
|
|
2648
|
+
</search_hit>
|
|
2649
|
+
</search_result>
|
|
2650
|
+
<search_result spectrum="900a.921.921.3" start_scan="921" end_scan="921" precursor_neutral_mass="1517.2920" assumed_charge="3" index="3861">
|
|
2651
|
+
<search_hit hit_rank="1" peptide="IWHHTFYNELR" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 19" tot_num_ions=" 40" calc_neutral_pep_mass="1515.6920" massdiff="+1.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2652
|
+
<search_score name="xcorr" value="2.699"/>
|
|
2653
|
+
<search_score name="deltacn" value="0.273"/>
|
|
2654
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2655
|
+
<search_score name="spscore" value="731.3"/>
|
|
2656
|
+
<search_score name="sprank" value="1"/>
|
|
2657
|
+
<peptideprophet_result probability="0.6834" all_ntt_prob="(0.0000,0.4375,0.6834)">
|
|
2658
|
+
<search_score_summary>
|
|
2659
|
+
<parameter name="fval" value="3.9033"/>
|
|
2660
|
+
<parameter name="ntt" value="2"/>
|
|
2661
|
+
<parameter name="nmc" value="0"/>
|
|
2662
|
+
<parameter name="massd" value="1.600"/>
|
|
2663
|
+
</search_score_summary>
|
|
2664
|
+
</peptideprophet_result>
|
|
2665
|
+
</search_hit>
|
|
2666
|
+
</search_result>
|
|
2667
|
+
<search_result spectrum="900c.1414.1414.3" start_scan="1414" end_scan="1414" precursor_neutral_mass="3105.1920" assumed_charge="3" index="4092">
|
|
2668
|
+
<search_hit hit_rank="1" peptide="TTGIVLDSGDGVTHVVPIYAGFSLPHAILR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 41" tot_num_ions="116" calc_neutral_pep_mass="3106.5920" massdiff="-1.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2669
|
+
<search_score name="xcorr" value="6.622"/>
|
|
2670
|
+
<search_score name="deltacn" value="0.654"/>
|
|
2671
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2672
|
+
<search_score name="spscore" value="1955.0"/>
|
|
2673
|
+
<search_score name="sprank" value="1"/>
|
|
2674
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
2675
|
+
<search_score_summary>
|
|
2676
|
+
<parameter name="fval" value="9.7771"/>
|
|
2677
|
+
<parameter name="ntt" value="2"/>
|
|
2678
|
+
<parameter name="nmc" value="0"/>
|
|
2679
|
+
<parameter name="massd" value="-1.400"/>
|
|
2680
|
+
</search_score_summary>
|
|
2681
|
+
</peptideprophet_result>
|
|
2682
|
+
</search_hit>
|
|
2683
|
+
</search_result>
|
|
2684
|
+
<search_result spectrum="900c.1418.1418.3" start_scan="1418" end_scan="1418" precursor_neutral_mass="3106.1920" assumed_charge="3" index="4093">
|
|
2685
|
+
<search_hit hit_rank="1" peptide="TTGIVLDSGDGVTHVVPIYAGFSLPHAILR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6321069|ref|NP_011147.1|" num_tot_proteins="1" num_matched_ions=" 44" tot_num_ions="116" calc_neutral_pep_mass="3106.5920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Actin; Act1p [Saccharomyces cerevisiae]">
|
|
2686
|
+
<search_score name="xcorr" value="7.030"/>
|
|
2687
|
+
<search_score name="deltacn" value="0.695"/>
|
|
2688
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2689
|
+
<search_score name="spscore" value="1972.5"/>
|
|
2690
|
+
<search_score name="sprank" value="1"/>
|
|
2691
|
+
<peptideprophet_result probability="0.9975" all_ntt_prob="(0.0000,0.9930,0.9975)">
|
|
2692
|
+
<search_score_summary>
|
|
2693
|
+
<parameter name="fval" value="10.3776"/>
|
|
2694
|
+
<parameter name="ntt" value="2"/>
|
|
2695
|
+
<parameter name="nmc" value="0"/>
|
|
2696
|
+
<parameter name="massd" value="-0.400"/>
|
|
2697
|
+
</search_score_summary>
|
|
2698
|
+
</peptideprophet_result>
|
|
2699
|
+
</search_hit>
|
|
2700
|
+
</search_result>
|
|
2701
|
+
<search_result spectrum="005a.1406.1406.2" start_scan="1406" end_scan="1406" precursor_neutral_mass="1138.2920" assumed_charge="2" index="71">
|
|
2702
|
+
<search_hit hit_rank="1" peptide="VIQVDEPALR" peptide_prev_aa="K" peptide_next_aa="E" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 11" tot_num_ions=" 18" calc_neutral_pep_mass="1139.2920" massdiff="-1.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2703
|
+
<search_score name="xcorr" value="1.712"/>
|
|
2704
|
+
<search_score name="deltacn" value="0.186"/>
|
|
2705
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2706
|
+
<search_score name="spscore" value="351.7"/>
|
|
2707
|
+
<search_score name="sprank" value="2"/>
|
|
2708
|
+
<peptideprophet_result probability="0.1021" all_ntt_prob="(0.0000,0.0545,0.1021)">
|
|
2709
|
+
<search_score_summary>
|
|
2710
|
+
<parameter name="fval" value="1.3942"/>
|
|
2711
|
+
<parameter name="ntt" value="2"/>
|
|
2712
|
+
<parameter name="nmc" value="0"/>
|
|
2713
|
+
<parameter name="massd" value="-1.000"/>
|
|
2714
|
+
</search_score_summary>
|
|
2715
|
+
</peptideprophet_result>
|
|
2716
|
+
</search_hit>
|
|
2717
|
+
</search_result>
|
|
2718
|
+
<search_result spectrum="005a.1449.1449.2" start_scan="1449" end_scan="1449" precursor_neutral_mass="1144.6920" assumed_charge="2" index="77">
|
|
2719
|
+
<search_hit hit_rank="1" peptide="QTLSVGIVDGR" peptide_prev_aa="K" peptide_next_aa="N" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 20" calc_neutral_pep_mass="1144.2920" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2720
|
+
<search_score name="xcorr" value="1.981"/>
|
|
2721
|
+
<search_score name="deltacn" value="0.330"/>
|
|
2722
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2723
|
+
<search_score name="spscore" value="417.5"/>
|
|
2724
|
+
<search_score name="sprank" value="1"/>
|
|
2725
|
+
<peptideprophet_result probability="0.7056" all_ntt_prob="(0.0000,0.5484,0.7056)">
|
|
2726
|
+
<search_score_summary>
|
|
2727
|
+
<parameter name="fval" value="2.9734"/>
|
|
2728
|
+
<parameter name="ntt" value="2"/>
|
|
2729
|
+
<parameter name="nmc" value="0"/>
|
|
2730
|
+
<parameter name="massd" value="0.400"/>
|
|
2731
|
+
</search_score_summary>
|
|
2732
|
+
</peptideprophet_result>
|
|
2733
|
+
</search_hit>
|
|
2734
|
+
</search_result>
|
|
2735
|
+
<search_result spectrum="005a.1464.1464.2" start_scan="1464" end_scan="1464" precursor_neutral_mass="1143.3920" assumed_charge="2" index="78">
|
|
2736
|
+
<search_hit hit_rank="1" peptide="QTLSVGIVDGR" peptide_prev_aa="K" peptide_next_aa="N" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 20" calc_neutral_pep_mass="1144.2920" massdiff="-0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2737
|
+
<search_score name="xcorr" value="1.586"/>
|
|
2738
|
+
<search_score name="deltacn" value="0.229"/>
|
|
2739
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2740
|
+
<search_score name="spscore" value="518.1"/>
|
|
2741
|
+
<search_score name="sprank" value="1"/>
|
|
2742
|
+
<peptideprophet_result probability="0.1451" all_ntt_prob="(0.0000,0.0792,0.1451)">
|
|
2743
|
+
<search_score_summary>
|
|
2744
|
+
<parameter name="fval" value="1.5652"/>
|
|
2745
|
+
<parameter name="ntt" value="2"/>
|
|
2746
|
+
<parameter name="nmc" value="0"/>
|
|
2747
|
+
<parameter name="massd" value="-0.900"/>
|
|
2748
|
+
</search_score_summary>
|
|
2749
|
+
</peptideprophet_result>
|
|
2750
|
+
</search_hit>
|
|
2751
|
+
</search_result>
|
|
2752
|
+
<search_result spectrum="005a.1977.1977.2" start_scan="1977" end_scan="1977" precursor_neutral_mass="1185.6920" assumed_charge="2" index="150">
|
|
2753
|
+
<search_hit hit_rank="1" peptide="DDANYIAEFK" peptide_prev_aa="K" peptide_next_aa="N" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 18" calc_neutral_pep_mass="1185.2920" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2754
|
+
<search_score name="xcorr" value="3.176"/>
|
|
2755
|
+
<search_score name="deltacn" value="0.466"/>
|
|
2756
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2757
|
+
<search_score name="spscore" value="1475.4"/>
|
|
2758
|
+
<search_score name="sprank" value="1"/>
|
|
2759
|
+
<peptideprophet_result probability="0.9975" all_ntt_prob="(0.0000,0.9950,0.9975)">
|
|
2760
|
+
<search_score_summary>
|
|
2761
|
+
<parameter name="fval" value="5.4993"/>
|
|
2762
|
+
<parameter name="ntt" value="2"/>
|
|
2763
|
+
<parameter name="nmc" value="0"/>
|
|
2764
|
+
<parameter name="massd" value="0.400"/>
|
|
2765
|
+
</search_score_summary>
|
|
2766
|
+
</peptideprophet_result>
|
|
2767
|
+
</search_hit>
|
|
2768
|
+
</search_result>
|
|
2769
|
+
<search_result spectrum="005a.1982.1982.2" start_scan="1982" end_scan="1982" precursor_neutral_mass="1186.1920" assumed_charge="2" index="153">
|
|
2770
|
+
<search_hit hit_rank="1" peptide="DDANYIAEFK" peptide_prev_aa="K" peptide_next_aa="N" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 18" calc_neutral_pep_mass="1185.2920" massdiff="+0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2771
|
+
<search_score name="xcorr" value="2.780"/>
|
|
2772
|
+
<search_score name="deltacn" value="0.477"/>
|
|
2773
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2774
|
+
<search_score name="spscore" value="1578.1"/>
|
|
2775
|
+
<search_score name="sprank" value="1"/>
|
|
2776
|
+
<peptideprophet_result probability="0.9946" all_ntt_prob="(0.0000,0.9894,0.9946)">
|
|
2777
|
+
<search_score_summary>
|
|
2778
|
+
<parameter name="fval" value="5.1663"/>
|
|
2779
|
+
<parameter name="ntt" value="2"/>
|
|
2780
|
+
<parameter name="nmc" value="0"/>
|
|
2781
|
+
<parameter name="massd" value="0.900"/>
|
|
2782
|
+
</search_score_summary>
|
|
2783
|
+
</peptideprophet_result>
|
|
2784
|
+
</search_hit>
|
|
2785
|
+
</search_result>
|
|
2786
|
+
<search_result spectrum="005a.2813.2813.2" start_scan="2813" end_scan="2813" precursor_neutral_mass="1174.6920" assumed_charge="2" index="262">
|
|
2787
|
+
<search_hit hit_rank="1" peptide="AVDVTALEMVK" peptide_prev_aa="K" peptide_next_aa="W" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 20" calc_neutral_pep_mass="1175.3920" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2788
|
+
<search_score name="xcorr" value="3.126"/>
|
|
2789
|
+
<search_score name="deltacn" value="0.492"/>
|
|
2790
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2791
|
+
<search_score name="spscore" value="1652.0"/>
|
|
2792
|
+
<search_score name="sprank" value="1"/>
|
|
2793
|
+
<peptideprophet_result probability="0.9984" all_ntt_prob="(0.0000,0.9969,0.9984)">
|
|
2794
|
+
<search_score_summary>
|
|
2795
|
+
<parameter name="fval" value="5.5311"/>
|
|
2796
|
+
<parameter name="ntt" value="2"/>
|
|
2797
|
+
<parameter name="nmc" value="0"/>
|
|
2798
|
+
<parameter name="massd" value="-0.700"/>
|
|
2799
|
+
</search_score_summary>
|
|
2800
|
+
</peptideprophet_result>
|
|
2801
|
+
</search_hit>
|
|
2802
|
+
</search_result>
|
|
2803
|
+
<search_result spectrum="005a.2828.2828.2" start_scan="2828" end_scan="2828" precursor_neutral_mass="1033.4920" assumed_charge="2" index="265">
|
|
2804
|
+
<search_hit hit_rank="1" peptide="GFFSFATQK" peptide_prev_aa="K" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 10" tot_num_ions=" 16" calc_neutral_pep_mass="1032.1920" massdiff="+1.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2805
|
+
<search_score name="xcorr" value="1.825"/>
|
|
2806
|
+
<search_score name="deltacn" value="0.350"/>
|
|
2807
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2808
|
+
<search_score name="spscore" value="203.4"/>
|
|
2809
|
+
<search_score name="sprank" value="8"/>
|
|
2810
|
+
<peptideprophet_result probability="0.2738" all_ntt_prob="(0.0000,0.1604,0.2738)">
|
|
2811
|
+
<search_score_summary>
|
|
2812
|
+
<parameter name="fval" value="2.5848"/>
|
|
2813
|
+
<parameter name="ntt" value="2"/>
|
|
2814
|
+
<parameter name="nmc" value="0"/>
|
|
2815
|
+
<parameter name="massd" value="1.300"/>
|
|
2816
|
+
</search_score_summary>
|
|
2817
|
+
</peptideprophet_result>
|
|
2818
|
+
</search_hit>
|
|
2819
|
+
</search_result>
|
|
2820
|
+
<search_result spectrum="005a.3116.3116.2" start_scan="3116" end_scan="3116" precursor_neutral_mass="964.1920" assumed_charge="2" index="290">
|
|
2821
|
+
<search_hit hit_rank="1" peptide="ITVDELFK" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 14" calc_neutral_pep_mass="964.0920" massdiff="+0.1" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2822
|
+
<search_score name="xcorr" value="2.573"/>
|
|
2823
|
+
<search_score name="deltacn" value="0.402"/>
|
|
2824
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2825
|
+
<search_score name="spscore" value="459.0"/>
|
|
2826
|
+
<search_score name="sprank" value="1"/>
|
|
2827
|
+
<peptideprophet_result probability="0.9856" all_ntt_prob="(0.0000,0.9720,0.9856)">
|
|
2828
|
+
<search_score_summary>
|
|
2829
|
+
<parameter name="fval" value="4.6135"/>
|
|
2830
|
+
<parameter name="ntt" value="2"/>
|
|
2831
|
+
<parameter name="nmc" value="0"/>
|
|
2832
|
+
<parameter name="massd" value="0.100"/>
|
|
2833
|
+
</search_score_summary>
|
|
2834
|
+
</peptideprophet_result>
|
|
2835
|
+
</search_hit>
|
|
2836
|
+
</search_result>
|
|
2837
|
+
<search_result spectrum="005a.3121.3121.2" start_scan="3121" end_scan="3121" precursor_neutral_mass="964.0920" assumed_charge="2" index="291">
|
|
2838
|
+
<search_hit hit_rank="1" peptide="ITVDELFK" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 14" calc_neutral_pep_mass="964.0920" massdiff="+-0.0" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2839
|
+
<search_score name="xcorr" value="2.155"/>
|
|
2840
|
+
<search_score name="deltacn" value="0.428"/>
|
|
2841
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2842
|
+
<search_score name="spscore" value="472.2"/>
|
|
2843
|
+
<search_score name="sprank" value="1"/>
|
|
2844
|
+
<peptideprophet_result probability="0.9709" all_ntt_prob="(0.0000,0.9442,0.9709)">
|
|
2845
|
+
<search_score_summary>
|
|
2846
|
+
<parameter name="fval" value="4.2091"/>
|
|
2847
|
+
<parameter name="ntt" value="2"/>
|
|
2848
|
+
<parameter name="nmc" value="0"/>
|
|
2849
|
+
<parameter name="massd" value="0.000"/>
|
|
2850
|
+
</search_score_summary>
|
|
2851
|
+
</peptideprophet_result>
|
|
2852
|
+
</search_hit>
|
|
2853
|
+
</search_result>
|
|
2854
|
+
<search_result spectrum="005a.3122.3122.2" start_scan="3122" end_scan="3122" precursor_neutral_mass="1214.9919" assumed_charge="2" index="292">
|
|
2855
|
+
<search_hit hit_rank="1" peptide="TQAMQLALALR" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 20" calc_neutral_pep_mass="1215.4919" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2856
|
+
<search_score name="xcorr" value="2.469"/>
|
|
2857
|
+
<search_score name="deltacn" value="0.312"/>
|
|
2858
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2859
|
+
<search_score name="spscore" value="625.0"/>
|
|
2860
|
+
<search_score name="sprank" value="1"/>
|
|
2861
|
+
<peptideprophet_result probability="0.9324" all_ntt_prob="(0.0000,0.8749,0.9324)">
|
|
2862
|
+
<search_score_summary>
|
|
2863
|
+
<parameter name="fval" value="3.5042"/>
|
|
2864
|
+
<parameter name="ntt" value="2"/>
|
|
2865
|
+
<parameter name="nmc" value="0"/>
|
|
2866
|
+
<parameter name="massd" value="-0.500"/>
|
|
2867
|
+
</search_score_summary>
|
|
2868
|
+
</peptideprophet_result>
|
|
2869
|
+
</search_hit>
|
|
2870
|
+
</search_result>
|
|
2871
|
+
<search_result spectrum="005b.3047.3047.2" start_scan="3047" end_scan="3047" precursor_neutral_mass="1598.0920" assumed_charge="2" index="776">
|
|
2872
|
+
<search_hit hit_rank="1" peptide="YDLSPIDTLFAMGR" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 26" calc_neutral_pep_mass="1598.7920" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2873
|
+
<search_score name="xcorr" value="2.925"/>
|
|
2874
|
+
<search_score name="deltacn" value="0.419"/>
|
|
2875
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2876
|
+
<search_score name="spscore" value="628.5"/>
|
|
2877
|
+
<search_score name="sprank" value="1"/>
|
|
2878
|
+
<peptideprophet_result probability="0.9866" all_ntt_prob="(0.0000,0.9739,0.9866)">
|
|
2879
|
+
<search_score_summary>
|
|
2880
|
+
<parameter name="fval" value="4.5633"/>
|
|
2881
|
+
<parameter name="ntt" value="2"/>
|
|
2882
|
+
<parameter name="nmc" value="0"/>
|
|
2883
|
+
<parameter name="massd" value="-0.700"/>
|
|
2884
|
+
</search_score_summary>
|
|
2885
|
+
</peptideprophet_result>
|
|
2886
|
+
</search_hit>
|
|
2887
|
+
</search_result>
|
|
2888
|
+
<search_result spectrum="005b.3051.3051.2" start_scan="3051" end_scan="3051" precursor_neutral_mass="1600.1920" assumed_charge="2" index="778">
|
|
2889
|
+
<search_hit hit_rank="1" peptide="YDLSPIDTLFAMGR" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 26" calc_neutral_pep_mass="1598.7920" massdiff="+1.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2890
|
+
<search_score name="xcorr" value="3.380"/>
|
|
2891
|
+
<search_score name="deltacn" value="0.577"/>
|
|
2892
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2893
|
+
<search_score name="spscore" value="704.1"/>
|
|
2894
|
+
<search_score name="sprank" value="1"/>
|
|
2895
|
+
<peptideprophet_result probability="0.9970" all_ntt_prob="(0.0000,0.9942,0.9970)">
|
|
2896
|
+
<search_score_summary>
|
|
2897
|
+
<parameter name="fval" value="6.1229"/>
|
|
2898
|
+
<parameter name="ntt" value="2"/>
|
|
2899
|
+
<parameter name="nmc" value="0"/>
|
|
2900
|
+
<parameter name="massd" value="1.400"/>
|
|
2901
|
+
</search_score_summary>
|
|
2902
|
+
</peptideprophet_result>
|
|
2903
|
+
</search_hit>
|
|
2904
|
+
</search_result>
|
|
2905
|
+
<search_result spectrum="005b.3084.3084.2" start_scan="3084" end_scan="3084" precursor_neutral_mass="1597.1920" assumed_charge="2" index="785">
|
|
2906
|
+
<search_hit hit_rank="1" peptide="YDLSPIDTLFAMGR" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 26" calc_neutral_pep_mass="1598.7920" massdiff="-1.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2907
|
+
<search_score name="xcorr" value="4.314"/>
|
|
2908
|
+
<search_score name="deltacn" value="0.637"/>
|
|
2909
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2910
|
+
<search_score name="spscore" value="1180.8"/>
|
|
2911
|
+
<search_score name="sprank" value="1"/>
|
|
2912
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9997,0.9999)">
|
|
2913
|
+
<search_score_summary>
|
|
2914
|
+
<parameter name="fval" value="7.2429"/>
|
|
2915
|
+
<parameter name="ntt" value="2"/>
|
|
2916
|
+
<parameter name="nmc" value="0"/>
|
|
2917
|
+
<parameter name="massd" value="-1.600"/>
|
|
2918
|
+
</search_score_summary>
|
|
2919
|
+
</peptideprophet_result>
|
|
2920
|
+
</search_hit>
|
|
2921
|
+
</search_result>
|
|
2922
|
+
<search_result spectrum="005b.3407.3407.2" start_scan="3407" end_scan="3407" precursor_neutral_mass="1505.7920" assumed_charge="2" index="824">
|
|
2923
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="+2.9" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2924
|
+
<search_score name="xcorr" value="3.393"/>
|
|
2925
|
+
<search_score name="deltacn" value="0.656"/>
|
|
2926
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2927
|
+
<search_score name="spscore" value="554.4"/>
|
|
2928
|
+
<search_score name="sprank" value="1"/>
|
|
2929
|
+
<peptideprophet_result probability="0.9959" all_ntt_prob="(0.0000,0.9959,0.9979)">
|
|
2930
|
+
<search_score_summary>
|
|
2931
|
+
<parameter name="fval" value="6.7117"/>
|
|
2932
|
+
<parameter name="ntt" value="1"/>
|
|
2933
|
+
<parameter name="nmc" value="0"/>
|
|
2934
|
+
<parameter name="massd" value="2.900"/>
|
|
2935
|
+
</search_score_summary>
|
|
2936
|
+
</peptideprophet_result>
|
|
2937
|
+
</search_hit>
|
|
2938
|
+
</search_result>
|
|
2939
|
+
<search_result spectrum="005b.3416.3416.2" start_scan="3416" end_scan="3416" precursor_neutral_mass="1503.3920" assumed_charge="2" index="825">
|
|
2940
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="+0.5" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2941
|
+
<search_score name="xcorr" value="3.774"/>
|
|
2942
|
+
<search_score name="deltacn" value="0.557"/>
|
|
2943
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2944
|
+
<search_score name="spscore" value="1138.4"/>
|
|
2945
|
+
<search_score name="sprank" value="1"/>
|
|
2946
|
+
<peptideprophet_result probability="0.9986" all_ntt_prob="(0.0000,0.9986,0.9993)">
|
|
2947
|
+
<search_score_summary>
|
|
2948
|
+
<parameter name="fval" value="6.2843"/>
|
|
2949
|
+
<parameter name="ntt" value="1"/>
|
|
2950
|
+
<parameter name="nmc" value="0"/>
|
|
2951
|
+
<parameter name="massd" value="0.500"/>
|
|
2952
|
+
</search_score_summary>
|
|
2953
|
+
</peptideprophet_result>
|
|
2954
|
+
</search_hit>
|
|
2955
|
+
</search_result>
|
|
2956
|
+
<search_result spectrum="005c.2907.2907.2" start_scan="2907" end_scan="2907" precursor_neutral_mass="2107.7919" assumed_charge="2" index="1179">
|
|
2957
|
+
<search_hit hit_rank="1" peptide="VFNLPLFPTTTIGSFPQTK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 36" calc_neutral_pep_mass="2108.4919" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2958
|
+
<search_score name="xcorr" value="4.261"/>
|
|
2959
|
+
<search_score name="deltacn" value="0.572"/>
|
|
2960
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2961
|
+
<search_score name="spscore" value="1001.2"/>
|
|
2962
|
+
<search_score name="sprank" value="1"/>
|
|
2963
|
+
<peptideprophet_result probability="0.9990" all_ntt_prob="(0.0000,0.9980,0.9990)">
|
|
2964
|
+
<search_score_summary>
|
|
2965
|
+
<parameter name="fval" value="6.6507"/>
|
|
2966
|
+
<parameter name="ntt" value="2"/>
|
|
2967
|
+
<parameter name="nmc" value="0"/>
|
|
2968
|
+
<parameter name="massd" value="-0.700"/>
|
|
2969
|
+
</search_score_summary>
|
|
2970
|
+
</peptideprophet_result>
|
|
2971
|
+
</search_hit>
|
|
2972
|
+
</search_result>
|
|
2973
|
+
<search_result spectrum="005c.2914.2914.2" start_scan="2914" end_scan="2914" precursor_neutral_mass="2109.5919" assumed_charge="2" index="1180">
|
|
2974
|
+
<search_hit hit_rank="1" peptide="VFNLPLFPTTTIGSFPQTK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 36" calc_neutral_pep_mass="2108.4919" massdiff="+1.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2975
|
+
<search_score name="xcorr" value="4.081"/>
|
|
2976
|
+
<search_score name="deltacn" value="0.549"/>
|
|
2977
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2978
|
+
<search_score name="spscore" value="956.9"/>
|
|
2979
|
+
<search_score name="sprank" value="1"/>
|
|
2980
|
+
<peptideprophet_result probability="0.9984" all_ntt_prob="(0.0000,0.9969,0.9984)">
|
|
2981
|
+
<search_score_summary>
|
|
2982
|
+
<parameter name="fval" value="6.3644"/>
|
|
2983
|
+
<parameter name="ntt" value="2"/>
|
|
2984
|
+
<parameter name="nmc" value="0"/>
|
|
2985
|
+
<parameter name="massd" value="1.100"/>
|
|
2986
|
+
</search_score_summary>
|
|
2987
|
+
</peptideprophet_result>
|
|
2988
|
+
</search_hit>
|
|
2989
|
+
</search_result>
|
|
2990
|
+
<search_result spectrum="020a.1839.1839.3" start_scan="1839" end_scan="1839" precursor_neutral_mass="1484.7920" assumed_charge="3" index="1512">
|
|
2991
|
+
<search_hit hit_rank="1" peptide="YVRPPIIVGDLSR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 24" tot_num_ions=" 48" calc_neutral_pep_mass="1484.7920" massdiff="+0.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
2992
|
+
<search_score name="xcorr" value="2.743"/>
|
|
2993
|
+
<search_score name="deltacn" value="0.402"/>
|
|
2994
|
+
<search_score name="deltacnstar" value="0"/>
|
|
2995
|
+
<search_score name="spscore" value="1050.0"/>
|
|
2996
|
+
<search_score name="sprank" value="1"/>
|
|
2997
|
+
<peptideprophet_result probability="0.9876" all_ntt_prob="(0.0000,0.9664,0.9876)">
|
|
2998
|
+
<search_score_summary>
|
|
2999
|
+
<parameter name="fval" value="5.2814"/>
|
|
3000
|
+
<parameter name="ntt" value="2"/>
|
|
3001
|
+
<parameter name="nmc" value="0"/>
|
|
3002
|
+
<parameter name="massd" value="0.000"/>
|
|
3003
|
+
</search_score_summary>
|
|
3004
|
+
</peptideprophet_result>
|
|
3005
|
+
</search_hit>
|
|
3006
|
+
</search_result>
|
|
3007
|
+
<search_result spectrum="020a.1847.1847.3" start_scan="1847" end_scan="1847" precursor_neutral_mass="1484.2920" assumed_charge="3" index="1514">
|
|
3008
|
+
<search_hit hit_rank="1" peptide="YVRPPIIVGDLSR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 48" calc_neutral_pep_mass="1484.7920" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3009
|
+
<search_score name="xcorr" value="2.837"/>
|
|
3010
|
+
<search_score name="deltacn" value="0.414"/>
|
|
3011
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3012
|
+
<search_score name="spscore" value="854.1"/>
|
|
3013
|
+
<search_score name="sprank" value="1"/>
|
|
3014
|
+
<peptideprophet_result probability="0.9915" all_ntt_prob="(0.0000,0.9768,0.9915)">
|
|
3015
|
+
<search_score_summary>
|
|
3016
|
+
<parameter name="fval" value="5.5077"/>
|
|
3017
|
+
<parameter name="ntt" value="2"/>
|
|
3018
|
+
<parameter name="nmc" value="0"/>
|
|
3019
|
+
<parameter name="massd" value="-0.500"/>
|
|
3020
|
+
</search_score_summary>
|
|
3021
|
+
</peptideprophet_result>
|
|
3022
|
+
</search_hit>
|
|
3023
|
+
</search_result>
|
|
3024
|
+
<search_result spectrum="020a.2148.2148.2" start_scan="2148" end_scan="2148" precursor_neutral_mass="1218.0919" assumed_charge="2" index="1547">
|
|
3025
|
+
<search_hit hit_rank="1" peptide="TQAMQLALALR" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 15" tot_num_ions=" 20" calc_neutral_pep_mass="1215.4919" massdiff="+2.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3026
|
+
<search_score name="xcorr" value="2.405"/>
|
|
3027
|
+
<search_score name="deltacn" value="0.474"/>
|
|
3028
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3029
|
+
<search_score name="spscore" value="988.5"/>
|
|
3030
|
+
<search_score name="sprank" value="1"/>
|
|
3031
|
+
<peptideprophet_result probability="0.9509" all_ntt_prob="(0.0000,0.9076,0.9509)">
|
|
3032
|
+
<search_score_summary>
|
|
3033
|
+
<parameter name="fval" value="4.6105"/>
|
|
3034
|
+
<parameter name="ntt" value="2"/>
|
|
3035
|
+
<parameter name="nmc" value="0"/>
|
|
3036
|
+
<parameter name="massd" value="2.600"/>
|
|
3037
|
+
</search_score_summary>
|
|
3038
|
+
</peptideprophet_result>
|
|
3039
|
+
</search_hit>
|
|
3040
|
+
</search_result>
|
|
3041
|
+
<search_result spectrum="020a.2194.2194.2" start_scan="2194" end_scan="2194" precursor_neutral_mass="964.0920" assumed_charge="2" index="1553">
|
|
3042
|
+
<search_hit hit_rank="1" peptide="ITVDELFK" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 7" tot_num_ions=" 14" calc_neutral_pep_mass="964.0920" massdiff="+-0.0" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3043
|
+
<search_score name="xcorr" value="1.671"/>
|
|
3044
|
+
<search_score name="deltacn" value="0.243"/>
|
|
3045
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3046
|
+
<search_score name="spscore" value="152.5"/>
|
|
3047
|
+
<search_score name="sprank" value="4"/>
|
|
3048
|
+
<peptideprophet_result probability="0.1238" all_ntt_prob="(0.0000,0.0668,0.1238)">
|
|
3049
|
+
<search_score_summary>
|
|
3050
|
+
<parameter name="fval" value="1.7263"/>
|
|
3051
|
+
<parameter name="ntt" value="2"/>
|
|
3052
|
+
<parameter name="nmc" value="0"/>
|
|
3053
|
+
<parameter name="massd" value="0.000"/>
|
|
3054
|
+
</search_score_summary>
|
|
3055
|
+
</peptideprophet_result>
|
|
3056
|
+
</search_hit>
|
|
3057
|
+
</search_result>
|
|
3058
|
+
<search_result spectrum="020a.2206.2206.2" start_scan="2206" end_scan="2206" precursor_neutral_mass="1215.0919" assumed_charge="2" index="1555">
|
|
3059
|
+
<search_hit hit_rank="1" peptide="TQAMQLALALR" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 20" calc_neutral_pep_mass="1215.4919" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3060
|
+
<search_score name="xcorr" value="2.276"/>
|
|
3061
|
+
<search_score name="deltacn" value="0.218"/>
|
|
3062
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3063
|
+
<search_score name="spscore" value="827.9"/>
|
|
3064
|
+
<search_score name="sprank" value="1"/>
|
|
3065
|
+
<peptideprophet_result probability="0.6342" all_ntt_prob="(0.0000,0.4677,0.6342)">
|
|
3066
|
+
<search_score_summary>
|
|
3067
|
+
<parameter name="fval" value="2.5715"/>
|
|
3068
|
+
<parameter name="ntt" value="2"/>
|
|
3069
|
+
<parameter name="nmc" value="0"/>
|
|
3070
|
+
<parameter name="massd" value="-0.400"/>
|
|
3071
|
+
</search_score_summary>
|
|
3072
|
+
</peptideprophet_result>
|
|
3073
|
+
</search_hit>
|
|
3074
|
+
</search_result>
|
|
3075
|
+
<search_result spectrum="020b.1251.1251.2" start_scan="1251" end_scan="1251" precursor_neutral_mass="1434.7920" assumed_charge="2" index="1796">
|
|
3076
|
+
<search_hit hit_rank="1" peptide="SAYYTWAAEAFR" peptide_prev_aa="R" peptide_next_aa="V" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 22" calc_neutral_pep_mass="1435.5920" massdiff="-0.8" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3077
|
+
<search_score name="xcorr" value="3.619"/>
|
|
3078
|
+
<search_score name="deltacn" value="0.540"/>
|
|
3079
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3080
|
+
<search_score name="spscore" value="1845.1"/>
|
|
3081
|
+
<search_score name="sprank" value="1"/>
|
|
3082
|
+
<peptideprophet_result probability="0.9956" all_ntt_prob="(0.0000,0.9913,0.9956)">
|
|
3083
|
+
<search_score_summary>
|
|
3084
|
+
<parameter name="fval" value="6.2170"/>
|
|
3085
|
+
<parameter name="ntt" value="2"/>
|
|
3086
|
+
<parameter name="nmc" value="0"/>
|
|
3087
|
+
<parameter name="massd" value="-0.800"/>
|
|
3088
|
+
</search_score_summary>
|
|
3089
|
+
</peptideprophet_result>
|
|
3090
|
+
</search_hit>
|
|
3091
|
+
</search_result>
|
|
3092
|
+
<search_result spectrum="020b.1256.1256.2" start_scan="1256" end_scan="1256" precursor_neutral_mass="1435.1920" assumed_charge="2" index="1797">
|
|
3093
|
+
<search_hit hit_rank="1" peptide="SAYYTWAAEAFR" peptide_prev_aa="R" peptide_next_aa="V" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 22" calc_neutral_pep_mass="1435.5920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3094
|
+
<search_score name="xcorr" value="3.952"/>
|
|
3095
|
+
<search_score name="deltacn" value="0.664"/>
|
|
3096
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3097
|
+
<search_score name="spscore" value="2305.5"/>
|
|
3098
|
+
<search_score name="sprank" value="1"/>
|
|
3099
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9999,0.9999)">
|
|
3100
|
+
<search_score_summary>
|
|
3101
|
+
<parameter name="fval" value="7.3819"/>
|
|
3102
|
+
<parameter name="ntt" value="2"/>
|
|
3103
|
+
<parameter name="nmc" value="0"/>
|
|
3104
|
+
<parameter name="massd" value="-0.400"/>
|
|
3105
|
+
</search_score_summary>
|
|
3106
|
+
</peptideprophet_result>
|
|
3107
|
+
</search_hit>
|
|
3108
|
+
</search_result>
|
|
3109
|
+
<search_result spectrum="020b.2601.2601.2" start_scan="2601" end_scan="2601" precursor_neutral_mass="1598.1920" assumed_charge="2" index="1942">
|
|
3110
|
+
<search_hit hit_rank="1" peptide="YDLSPIDTLFAMGR" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions=" 26" calc_neutral_pep_mass="1598.7920" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3111
|
+
<search_score name="xcorr" value="4.614"/>
|
|
3112
|
+
<search_score name="deltacn" value="0.595"/>
|
|
3113
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3114
|
+
<search_score name="spscore" value="1322.0"/>
|
|
3115
|
+
<search_score name="sprank" value="1"/>
|
|
3116
|
+
<peptideprophet_result probability="0.9970" all_ntt_prob="(0.0000,0.9941,0.9970)">
|
|
3117
|
+
<search_score_summary>
|
|
3118
|
+
<parameter name="fval" value="7.1232"/>
|
|
3119
|
+
<parameter name="ntt" value="2"/>
|
|
3120
|
+
<parameter name="nmc" value="0"/>
|
|
3121
|
+
<parameter name="massd" value="-0.600"/>
|
|
3122
|
+
</search_score_summary>
|
|
3123
|
+
</peptideprophet_result>
|
|
3124
|
+
</search_hit>
|
|
3125
|
+
</search_result>
|
|
3126
|
+
<search_result spectrum="020b.2606.2606.2" start_scan="2606" end_scan="2606" precursor_neutral_mass="1597.8920" assumed_charge="2" index="1943">
|
|
3127
|
+
<search_hit hit_rank="1" peptide="YDLSPIDTLFAMGR" peptide_prev_aa="K" peptide_next_aa="G" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 26" calc_neutral_pep_mass="1598.7920" massdiff="-0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3128
|
+
<search_score name="xcorr" value="4.639"/>
|
|
3129
|
+
<search_score name="deltacn" value="0.650"/>
|
|
3130
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3131
|
+
<search_score name="spscore" value="976.5"/>
|
|
3132
|
+
<search_score name="sprank" value="1"/>
|
|
3133
|
+
<peptideprophet_result probability="0.9998" all_ntt_prob="(0.0000,0.9996,0.9998)">
|
|
3134
|
+
<search_score_summary>
|
|
3135
|
+
<parameter name="fval" value="7.5408"/>
|
|
3136
|
+
<parameter name="ntt" value="2"/>
|
|
3137
|
+
<parameter name="nmc" value="0"/>
|
|
3138
|
+
<parameter name="massd" value="-0.900"/>
|
|
3139
|
+
</search_score_summary>
|
|
3140
|
+
</peptideprophet_result>
|
|
3141
|
+
</search_hit>
|
|
3142
|
+
</search_result>
|
|
3143
|
+
<search_result spectrum="020b.2938.2938.2" start_scan="2938" end_scan="2938" precursor_neutral_mass="1502.2920" assumed_charge="2" index="1975">
|
|
3144
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="-0.6" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3145
|
+
<search_score name="xcorr" value="3.626"/>
|
|
3146
|
+
<search_score name="deltacn" value="0.610"/>
|
|
3147
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3148
|
+
<search_score name="spscore" value="940.1"/>
|
|
3149
|
+
<search_score name="sprank" value="1"/>
|
|
3150
|
+
<peptideprophet_result probability="0.9993" all_ntt_prob="(0.0000,0.9993,0.9996)">
|
|
3151
|
+
<search_score_summary>
|
|
3152
|
+
<parameter name="fval" value="6.5605"/>
|
|
3153
|
+
<parameter name="ntt" value="1"/>
|
|
3154
|
+
<parameter name="nmc" value="0"/>
|
|
3155
|
+
<parameter name="massd" value="-0.600"/>
|
|
3156
|
+
</search_score_summary>
|
|
3157
|
+
</peptideprophet_result>
|
|
3158
|
+
</search_hit>
|
|
3159
|
+
</search_result>
|
|
3160
|
+
<search_result spectrum="020b.2942.2942.2" start_scan="2942" end_scan="2942" precursor_neutral_mass="1502.3920" assumed_charge="2" index="1976">
|
|
3161
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="-0.5" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3162
|
+
<search_score name="xcorr" value="3.534"/>
|
|
3163
|
+
<search_score name="deltacn" value="0.602"/>
|
|
3164
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3165
|
+
<search_score name="spscore" value="1122.6"/>
|
|
3166
|
+
<search_score name="sprank" value="1"/>
|
|
3167
|
+
<peptideprophet_result probability="0.9987" all_ntt_prob="(0.0000,0.9987,0.9993)">
|
|
3168
|
+
<search_score_summary>
|
|
3169
|
+
<parameter name="fval" value="6.4302"/>
|
|
3170
|
+
<parameter name="ntt" value="1"/>
|
|
3171
|
+
<parameter name="nmc" value="0"/>
|
|
3172
|
+
<parameter name="massd" value="-0.500"/>
|
|
3173
|
+
</search_score_summary>
|
|
3174
|
+
</peptideprophet_result>
|
|
3175
|
+
</search_hit>
|
|
3176
|
+
</search_result>
|
|
3177
|
+
<search_result spectrum="020b.2944.2944.2" start_scan="2944" end_scan="2944" precursor_neutral_mass="1505.6920" assumed_charge="2" index="1977">
|
|
3178
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="+2.8" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3179
|
+
<search_score name="xcorr" value="3.434"/>
|
|
3180
|
+
<search_score name="deltacn" value="0.604"/>
|
|
3181
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3182
|
+
<search_score name="spscore" value="1143.9"/>
|
|
3183
|
+
<search_score name="sprank" value="1"/>
|
|
3184
|
+
<peptideprophet_result probability="0.9956" all_ntt_prob="(0.0000,0.9956,0.9978)">
|
|
3185
|
+
<search_score_summary>
|
|
3186
|
+
<parameter name="fval" value="6.3647"/>
|
|
3187
|
+
<parameter name="ntt" value="1"/>
|
|
3188
|
+
<parameter name="nmc" value="0"/>
|
|
3189
|
+
<parameter name="massd" value="2.800"/>
|
|
3190
|
+
</search_score_summary>
|
|
3191
|
+
</peptideprophet_result>
|
|
3192
|
+
</search_hit>
|
|
3193
|
+
</search_result>
|
|
3194
|
+
<search_result spectrum="020b.2949.2949.2" start_scan="2949" end_scan="2949" precursor_neutral_mass="1505.5920" assumed_charge="2" index="1979">
|
|
3195
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="+2.7" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3196
|
+
<search_score name="xcorr" value="3.583"/>
|
|
3197
|
+
<search_score name="deltacn" value="0.605"/>
|
|
3198
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3199
|
+
<search_score name="spscore" value="695.3"/>
|
|
3200
|
+
<search_score name="sprank" value="1"/>
|
|
3201
|
+
<peptideprophet_result probability="0.9966" all_ntt_prob="(0.0000,0.9966,0.9983)">
|
|
3202
|
+
<search_score_summary>
|
|
3203
|
+
<parameter name="fval" value="6.4906"/>
|
|
3204
|
+
<parameter name="ntt" value="1"/>
|
|
3205
|
+
<parameter name="nmc" value="0"/>
|
|
3206
|
+
<parameter name="massd" value="2.700"/>
|
|
3207
|
+
</search_score_summary>
|
|
3208
|
+
</peptideprophet_result>
|
|
3209
|
+
</search_hit>
|
|
3210
|
+
</search_result>
|
|
3211
|
+
<search_result spectrum="020b.815.815.3" start_scan="815" end_scan="815" precursor_neutral_mass="2224.9919" assumed_charge="3" index="2109">
|
|
3212
|
+
<search_hit hit_rank="1" peptide="VVVATSSSLLHTPVDLNNETK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions=" 80" calc_neutral_pep_mass="2224.4919" massdiff="+0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3213
|
+
<search_score name="xcorr" value="3.866"/>
|
|
3214
|
+
<search_score name="deltacn" value="0.483"/>
|
|
3215
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3216
|
+
<search_score name="spscore" value="410.1"/>
|
|
3217
|
+
<search_score name="sprank" value="1"/>
|
|
3218
|
+
<peptideprophet_result probability="0.9968" all_ntt_prob="(0.0000,0.9912,0.9968)">
|
|
3219
|
+
<search_score_summary>
|
|
3220
|
+
<parameter name="fval" value="6.7259"/>
|
|
3221
|
+
<parameter name="ntt" value="2"/>
|
|
3222
|
+
<parameter name="nmc" value="0"/>
|
|
3223
|
+
<parameter name="massd" value="0.500"/>
|
|
3224
|
+
</search_score_summary>
|
|
3225
|
+
</peptideprophet_result>
|
|
3226
|
+
</search_hit>
|
|
3227
|
+
</search_result>
|
|
3228
|
+
<search_result spectrum="020b.824.824.3" start_scan="824" end_scan="824" precursor_neutral_mass="2225.9919" assumed_charge="3" index="2113">
|
|
3229
|
+
<search_hit hit_rank="1" peptide="VVVATSSSLLHTPVDLNNETK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 28" tot_num_ions=" 80" calc_neutral_pep_mass="2224.4919" massdiff="+1.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3230
|
+
<search_score name="xcorr" value="2.875"/>
|
|
3231
|
+
<search_score name="deltacn" value="0.440"/>
|
|
3232
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3233
|
+
<search_score name="spscore" value="653.9"/>
|
|
3234
|
+
<search_score name="sprank" value="1"/>
|
|
3235
|
+
<peptideprophet_result probability="0.9704" all_ntt_prob="(0.0000,0.9219,0.9704)">
|
|
3236
|
+
<search_score_summary>
|
|
3237
|
+
<parameter name="fval" value="5.5274"/>
|
|
3238
|
+
<parameter name="ntt" value="2"/>
|
|
3239
|
+
<parameter name="nmc" value="0"/>
|
|
3240
|
+
<parameter name="massd" value="1.500"/>
|
|
3241
|
+
</search_score_summary>
|
|
3242
|
+
</peptideprophet_result>
|
|
3243
|
+
</search_hit>
|
|
3244
|
+
</search_result>
|
|
3245
|
+
<search_result spectrum="020c.1690.1690.2" start_scan="1690" end_scan="1690" precursor_neutral_mass="2107.9919" assumed_charge="2" index="2193">
|
|
3246
|
+
<search_hit hit_rank="1" peptide="VFNLPLFPTTTIGSFPQTK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 36" calc_neutral_pep_mass="2108.4919" massdiff="-0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3247
|
+
<search_score name="xcorr" value="3.588"/>
|
|
3248
|
+
<search_score name="deltacn" value="0.460"/>
|
|
3249
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3250
|
+
<search_score name="spscore" value="946.1"/>
|
|
3251
|
+
<search_score name="sprank" value="1"/>
|
|
3252
|
+
<peptideprophet_result probability="0.9948" all_ntt_prob="(0.0000,0.9898,0.9948)">
|
|
3253
|
+
<search_score_summary>
|
|
3254
|
+
<parameter name="fval" value="5.3612"/>
|
|
3255
|
+
<parameter name="ntt" value="2"/>
|
|
3256
|
+
<parameter name="nmc" value="0"/>
|
|
3257
|
+
<parameter name="massd" value="-0.500"/>
|
|
3258
|
+
</search_score_summary>
|
|
3259
|
+
</peptideprophet_result>
|
|
3260
|
+
</search_hit>
|
|
3261
|
+
</search_result>
|
|
3262
|
+
<search_result spectrum="020c.1694.1694.2" start_scan="1694" end_scan="1694" precursor_neutral_mass="2109.3919" assumed_charge="2" index="2194">
|
|
3263
|
+
<search_hit hit_rank="1" peptide="VFNLPLFPTTTIGSFPQTK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 36" calc_neutral_pep_mass="2108.4919" massdiff="+0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3264
|
+
<search_score name="xcorr" value="3.818"/>
|
|
3265
|
+
<search_score name="deltacn" value="0.505"/>
|
|
3266
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3267
|
+
<search_score name="spscore" value="774.1"/>
|
|
3268
|
+
<search_score name="sprank" value="1"/>
|
|
3269
|
+
<peptideprophet_result probability="0.9985" all_ntt_prob="(0.0000,0.9971,0.9985)">
|
|
3270
|
+
<search_score_summary>
|
|
3271
|
+
<parameter name="fval" value="5.8603"/>
|
|
3272
|
+
<parameter name="ntt" value="2"/>
|
|
3273
|
+
<parameter name="nmc" value="0"/>
|
|
3274
|
+
<parameter name="massd" value="0.900"/>
|
|
3275
|
+
</search_score_summary>
|
|
3276
|
+
</peptideprophet_result>
|
|
3277
|
+
</search_hit>
|
|
3278
|
+
</search_result>
|
|
3279
|
+
<search_result spectrum="020c.1778.1778.2" start_scan="1778" end_scan="1778" precursor_neutral_mass="2105.7919" assumed_charge="2" index="2203">
|
|
3280
|
+
<search_hit hit_rank="1" peptide="VFNLPLFPTTTIGSFPQTK" peptide_prev_aa="K" peptide_next_aa="D" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 17" tot_num_ions=" 36" calc_neutral_pep_mass="2108.4919" massdiff="-2.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3281
|
+
<search_score name="xcorr" value="3.214"/>
|
|
3282
|
+
<search_score name="deltacn" value="0.475"/>
|
|
3283
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3284
|
+
<search_score name="spscore" value="507.1"/>
|
|
3285
|
+
<search_score name="sprank" value="1"/>
|
|
3286
|
+
<peptideprophet_result probability="0.9108" all_ntt_prob="(0.0000,0.8381,0.9108)">
|
|
3287
|
+
<search_score_summary>
|
|
3288
|
+
<parameter name="fval" value="5.1700"/>
|
|
3289
|
+
<parameter name="ntt" value="2"/>
|
|
3290
|
+
<parameter name="nmc" value="0"/>
|
|
3291
|
+
<parameter name="massd" value="-2.700"/>
|
|
3292
|
+
</search_score_summary>
|
|
3293
|
+
</peptideprophet_result>
|
|
3294
|
+
</search_hit>
|
|
3295
|
+
</search_result>
|
|
3296
|
+
<search_result spectrum="060a.1214.1214.3" start_scan="1214" end_scan="1214" precursor_neutral_mass="1386.9919" assumed_charge="3" index="2497">
|
|
3297
|
+
<search_hit hit_rank="1" peptide="WFDSNYHYVR" peptide_prev_aa="K" peptide_next_aa="P" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 36" calc_neutral_pep_mass="1386.4919" massdiff="+0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3298
|
+
<search_score name="xcorr" value="1.828"/>
|
|
3299
|
+
<search_score name="deltacn" value="0.254"/>
|
|
3300
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3301
|
+
<search_score name="spscore" value="240.2"/>
|
|
3302
|
+
<search_score name="sprank" value="15"/>
|
|
3303
|
+
<peptideprophet_result probability="0.1180" all_ntt_prob="(0.0000,0.0460,0.1180)">
|
|
3304
|
+
<search_score_summary>
|
|
3305
|
+
<parameter name="fval" value="2.0725"/>
|
|
3306
|
+
<parameter name="ntt" value="2"/>
|
|
3307
|
+
<parameter name="nmc" value="0"/>
|
|
3308
|
+
<parameter name="massd" value="0.500"/>
|
|
3309
|
+
</search_score_summary>
|
|
3310
|
+
</peptideprophet_result>
|
|
3311
|
+
</search_hit>
|
|
3312
|
+
</search_result>
|
|
3313
|
+
<search_result spectrum="060a.1832.1832.3" start_scan="1832" end_scan="1832" precursor_neutral_mass="1484.6920" assumed_charge="3" index="2572">
|
|
3314
|
+
<search_hit hit_rank="1" peptide="YVRPPIIVGDLSR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 27" tot_num_ions=" 48" calc_neutral_pep_mass="1484.7920" massdiff="-0.1" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3315
|
+
<search_score name="xcorr" value="3.107"/>
|
|
3316
|
+
<search_score name="deltacn" value="0.397"/>
|
|
3317
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3318
|
+
<search_score name="spscore" value="1473.8"/>
|
|
3319
|
+
<search_score name="sprank" value="1"/>
|
|
3320
|
+
<peptideprophet_result probability="0.9922" all_ntt_prob="(0.0000,0.9787,0.9922)">
|
|
3321
|
+
<search_score_summary>
|
|
3322
|
+
<parameter name="fval" value="5.5621"/>
|
|
3323
|
+
<parameter name="ntt" value="2"/>
|
|
3324
|
+
<parameter name="nmc" value="0"/>
|
|
3325
|
+
<parameter name="massd" value="-0.100"/>
|
|
3326
|
+
</search_score_summary>
|
|
3327
|
+
</peptideprophet_result>
|
|
3328
|
+
</search_hit>
|
|
3329
|
+
</search_result>
|
|
3330
|
+
<search_result spectrum="060a.1838.1838.3" start_scan="1838" end_scan="1838" precursor_neutral_mass="1485.1920" assumed_charge="3" index="2573">
|
|
3331
|
+
<search_hit hit_rank="1" peptide="YVRPPIIVGDLSR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 26" tot_num_ions=" 48" calc_neutral_pep_mass="1484.7920" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3332
|
+
<search_score name="xcorr" value="2.945"/>
|
|
3333
|
+
<search_score name="deltacn" value="0.456"/>
|
|
3334
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3335
|
+
<search_score name="spscore" value="1233.8"/>
|
|
3336
|
+
<search_score name="sprank" value="1"/>
|
|
3337
|
+
<peptideprophet_result probability="0.9963" all_ntt_prob="(0.0000,0.9897,0.9963)">
|
|
3338
|
+
<search_score_summary>
|
|
3339
|
+
<parameter name="fval" value="6.0818"/>
|
|
3340
|
+
<parameter name="ntt" value="2"/>
|
|
3341
|
+
<parameter name="nmc" value="0"/>
|
|
3342
|
+
<parameter name="massd" value="0.400"/>
|
|
3343
|
+
</search_score_summary>
|
|
3344
|
+
</peptideprophet_result>
|
|
3345
|
+
</search_hit>
|
|
3346
|
+
</search_result>
|
|
3347
|
+
<search_result spectrum="060b.1185.1185.2" start_scan="1185" end_scan="1185" precursor_neutral_mass="1393.8920" assumed_charge="2" index="2932">
|
|
3348
|
+
<search_hit hit_rank="1" peptide="GLPVAALHVDFVR" peptide_prev_aa="K" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 24" calc_neutral_pep_mass="1393.5920" massdiff="+0.3" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3349
|
+
<search_score name="xcorr" value="3.689"/>
|
|
3350
|
+
<search_score name="deltacn" value="0.617"/>
|
|
3351
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3352
|
+
<search_score name="spscore" value="1072.0"/>
|
|
3353
|
+
<search_score name="sprank" value="1"/>
|
|
3354
|
+
<peptideprophet_result probability="0.9998" all_ntt_prob="(0.0000,0.9996,0.9998)">
|
|
3355
|
+
<search_score_summary>
|
|
3356
|
+
<parameter name="fval" value="6.7426"/>
|
|
3357
|
+
<parameter name="ntt" value="2"/>
|
|
3358
|
+
<parameter name="nmc" value="0"/>
|
|
3359
|
+
<parameter name="massd" value="0.300"/>
|
|
3360
|
+
</search_score_summary>
|
|
3361
|
+
</peptideprophet_result>
|
|
3362
|
+
</search_hit>
|
|
3363
|
+
</search_result>
|
|
3364
|
+
<search_result spectrum="060b.1188.1188.2" start_scan="1188" end_scan="1188" precursor_neutral_mass="1393.1920" assumed_charge="2" index="2934">
|
|
3365
|
+
<search_hit hit_rank="1" peptide="GLPVAALHVDFVR" peptide_prev_aa="K" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 18" tot_num_ions=" 24" calc_neutral_pep_mass="1393.5920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3366
|
+
<search_score name="xcorr" value="3.173"/>
|
|
3367
|
+
<search_score name="deltacn" value="0.640"/>
|
|
3368
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3369
|
+
<search_score name="spscore" value="865.0"/>
|
|
3370
|
+
<search_score name="sprank" value="1"/>
|
|
3371
|
+
<peptideprophet_result probability="0.9784" all_ntt_prob="(0.0000,0.9582,0.9784)">
|
|
3372
|
+
<search_score_summary>
|
|
3373
|
+
<parameter name="fval" value="6.4808"/>
|
|
3374
|
+
<parameter name="ntt" value="2"/>
|
|
3375
|
+
<parameter name="nmc" value="0"/>
|
|
3376
|
+
<parameter name="massd" value="-0.400"/>
|
|
3377
|
+
</search_score_summary>
|
|
3378
|
+
</peptideprophet_result>
|
|
3379
|
+
</search_hit>
|
|
3380
|
+
</search_result>
|
|
3381
|
+
<search_result spectrum="060b.1209.1209.2" start_scan="1209" end_scan="1209" precursor_neutral_mass="1396.1920" assumed_charge="2" index="2935">
|
|
3382
|
+
<search_hit hit_rank="1" peptide="GLPVAALHVDFVR" peptide_prev_aa="K" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 24" calc_neutral_pep_mass="1393.5920" massdiff="+2.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3383
|
+
<search_score name="xcorr" value="2.556"/>
|
|
3384
|
+
<search_score name="deltacn" value="0.472"/>
|
|
3385
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3386
|
+
<search_score name="spscore" value="753.2"/>
|
|
3387
|
+
<search_score name="sprank" value="1"/>
|
|
3388
|
+
<peptideprophet_result probability="0.9547" all_ntt_prob="(0.0000,0.9145,0.9547)">
|
|
3389
|
+
<search_score_summary>
|
|
3390
|
+
<parameter name="fval" value="4.6343"/>
|
|
3391
|
+
<parameter name="ntt" value="2"/>
|
|
3392
|
+
<parameter name="nmc" value="0"/>
|
|
3393
|
+
<parameter name="massd" value="2.600"/>
|
|
3394
|
+
</search_score_summary>
|
|
3395
|
+
</peptideprophet_result>
|
|
3396
|
+
</search_hit>
|
|
3397
|
+
</search_result>
|
|
3398
|
+
<search_result spectrum="060b.3173.3173.3" start_scan="3173" end_scan="3173" precursor_neutral_mass="2471.1920" assumed_charge="3" index="3163">
|
|
3399
|
+
<search_hit hit_rank="1" peptide="TQAMQLALALRDEVNDLEAAGIK" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 32" tot_num_ions=" 88" calc_neutral_pep_mass="2470.7920" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3400
|
+
<search_score name="xcorr" value="4.042"/>
|
|
3401
|
+
<search_score name="deltacn" value="0.476"/>
|
|
3402
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3403
|
+
<search_score name="spscore" value="687.8"/>
|
|
3404
|
+
<search_score name="sprank" value="1"/>
|
|
3405
|
+
<peptideprophet_result probability="0.9914" all_ntt_prob="(0.0000,0.9764,0.9914)">
|
|
3406
|
+
<search_score_summary>
|
|
3407
|
+
<parameter name="fval" value="6.6867"/>
|
|
3408
|
+
<parameter name="ntt" value="2"/>
|
|
3409
|
+
<parameter name="nmc" value="1"/>
|
|
3410
|
+
<parameter name="massd" value="0.400"/>
|
|
3411
|
+
</search_score_summary>
|
|
3412
|
+
</peptideprophet_result>
|
|
3413
|
+
</search_hit>
|
|
3414
|
+
</search_result>
|
|
3415
|
+
<search_result spectrum="060b.3179.3179.3" start_scan="3179" end_scan="3179" precursor_neutral_mass="2469.7920" assumed_charge="3" index="3164">
|
|
3416
|
+
<search_hit hit_rank="1" peptide="TQAMQLALALRDEVNDLEAAGIK" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 33" tot_num_ions=" 88" calc_neutral_pep_mass="2470.7920" massdiff="-1.0" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3417
|
+
<search_score name="xcorr" value="4.839"/>
|
|
3418
|
+
<search_score name="deltacn" value="0.554"/>
|
|
3419
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3420
|
+
<search_score name="spscore" value="693.9"/>
|
|
3421
|
+
<search_score name="sprank" value="1"/>
|
|
3422
|
+
<peptideprophet_result probability="0.9999" all_ntt_prob="(0.0000,0.9997,0.9999)">
|
|
3423
|
+
<search_score_summary>
|
|
3424
|
+
<parameter name="fval" value="7.9905"/>
|
|
3425
|
+
<parameter name="ntt" value="2"/>
|
|
3426
|
+
<parameter name="nmc" value="1"/>
|
|
3427
|
+
<parameter name="massd" value="-1.000"/>
|
|
3428
|
+
</search_score_summary>
|
|
3429
|
+
</peptideprophet_result>
|
|
3430
|
+
</search_hit>
|
|
3431
|
+
</search_result>
|
|
3432
|
+
<search_result spectrum="060b.3186.3186.2" start_scan="3186" end_scan="3186" precursor_neutral_mass="1502.1920" assumed_charge="2" index="3165">
|
|
3433
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="-0.7" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3434
|
+
<search_score name="xcorr" value="3.871"/>
|
|
3435
|
+
<search_score name="deltacn" value="0.579"/>
|
|
3436
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3437
|
+
<search_score name="spscore" value="1336.3"/>
|
|
3438
|
+
<search_score name="sprank" value="1"/>
|
|
3439
|
+
<peptideprophet_result probability="0.9983" all_ntt_prob="(0.0000,0.9983,0.9991)">
|
|
3440
|
+
<search_score_summary>
|
|
3441
|
+
<parameter name="fval" value="6.5161"/>
|
|
3442
|
+
<parameter name="ntt" value="1"/>
|
|
3443
|
+
<parameter name="nmc" value="0"/>
|
|
3444
|
+
<parameter name="massd" value="-0.700"/>
|
|
3445
|
+
</search_score_summary>
|
|
3446
|
+
</peptideprophet_result>
|
|
3447
|
+
</search_hit>
|
|
3448
|
+
</search_result>
|
|
3449
|
+
<search_result spectrum="060b.3196.3196.2" start_scan="3196" end_scan="3196" precursor_neutral_mass="1502.3920" assumed_charge="2" index="3167">
|
|
3450
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="-0.5" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3451
|
+
<search_score name="xcorr" value="3.876"/>
|
|
3452
|
+
<search_score name="deltacn" value="0.650"/>
|
|
3453
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3454
|
+
<search_score name="spscore" value="1357.1"/>
|
|
3455
|
+
<search_score name="sprank" value="1"/>
|
|
3456
|
+
<peptideprophet_result probability="0.9998" all_ntt_prob="(0.0000,0.9998,0.9999)">
|
|
3457
|
+
<search_score_summary>
|
|
3458
|
+
<parameter name="fval" value="7.0392"/>
|
|
3459
|
+
<parameter name="ntt" value="1"/>
|
|
3460
|
+
<parameter name="nmc" value="0"/>
|
|
3461
|
+
<parameter name="massd" value="-0.500"/>
|
|
3462
|
+
</search_score_summary>
|
|
3463
|
+
</peptideprophet_result>
|
|
3464
|
+
</search_hit>
|
|
3465
|
+
</search_result>
|
|
3466
|
+
<search_result spectrum="060b.3210.3210.2" start_scan="3210" end_scan="3210" precursor_neutral_mass="1505.4920" assumed_charge="2" index="3172">
|
|
3467
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="+2.6" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3468
|
+
<search_score name="xcorr" value="3.972"/>
|
|
3469
|
+
<search_score name="deltacn" value="0.677"/>
|
|
3470
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3471
|
+
<search_score name="spscore" value="1125.8"/>
|
|
3472
|
+
<search_score name="sprank" value="1"/>
|
|
3473
|
+
<peptideprophet_result probability="0.7009" all_ntt_prob="(0.0000,0.7009,0.8222)">
|
|
3474
|
+
<search_score_summary>
|
|
3475
|
+
<parameter name="fval" value="7.3051"/>
|
|
3476
|
+
<parameter name="ntt" value="1"/>
|
|
3477
|
+
<parameter name="nmc" value="0"/>
|
|
3478
|
+
<parameter name="massd" value="2.600"/>
|
|
3479
|
+
</search_score_summary>
|
|
3480
|
+
</peptideprophet_result>
|
|
3481
|
+
</search_hit>
|
|
3482
|
+
</search_result>
|
|
3483
|
+
<search_result spectrum="060b.3214.3214.2" start_scan="3214" end_scan="3214" precursor_neutral_mass="1505.6920" assumed_charge="2" index="3174">
|
|
3484
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 22" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="+2.8" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3485
|
+
<search_score name="xcorr" value="3.759"/>
|
|
3486
|
+
<search_score name="deltacn" value="0.634"/>
|
|
3487
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3488
|
+
<search_score name="spscore" value="1284.5"/>
|
|
3489
|
+
<search_score name="sprank" value="1"/>
|
|
3490
|
+
<peptideprophet_result probability="0.9995" all_ntt_prob="(0.0000,0.9995,0.9997)">
|
|
3491
|
+
<search_score_summary>
|
|
3492
|
+
<parameter name="fval" value="6.8366"/>
|
|
3493
|
+
<parameter name="ntt" value="1"/>
|
|
3494
|
+
<parameter name="nmc" value="0"/>
|
|
3495
|
+
<parameter name="massd" value="2.800"/>
|
|
3496
|
+
</search_score_summary>
|
|
3497
|
+
</peptideprophet_result>
|
|
3498
|
+
</search_hit>
|
|
3499
|
+
</search_result>
|
|
3500
|
+
<search_result spectrum="060b.3367.3367.2" start_scan="3367" end_scan="3367" precursor_neutral_mass="1504.9920" assumed_charge="2" index="3191">
|
|
3501
|
+
<search_hit hit_rank="1" peptide="PVLLGPVSYLFLGK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 12" tot_num_ions=" 26" calc_neutral_pep_mass="1502.8920" massdiff="+2.1" num_tol_term="1" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3502
|
+
<search_score name="xcorr" value="1.856"/>
|
|
3503
|
+
<search_score name="deltacn" value="0.270"/>
|
|
3504
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3505
|
+
<search_score name="spscore" value="303.1"/>
|
|
3506
|
+
<search_score name="sprank" value="1"/>
|
|
3507
|
+
<peptideprophet_result probability="0.0542" all_ntt_prob="(0.0000,0.0542,0.1015)">
|
|
3508
|
+
<search_score_summary>
|
|
3509
|
+
<parameter name="fval" value="2.2036"/>
|
|
3510
|
+
<parameter name="ntt" value="1"/>
|
|
3511
|
+
<parameter name="nmc" value="0"/>
|
|
3512
|
+
<parameter name="massd" value="2.100"/>
|
|
3513
|
+
</search_score_summary>
|
|
3514
|
+
</peptideprophet_result>
|
|
3515
|
+
</search_hit>
|
|
3516
|
+
</search_result>
|
|
3517
|
+
<search_result spectrum="060b.735.735.3" start_scan="735" end_scan="735" precursor_neutral_mass="2224.2919" assumed_charge="3" index="3322">
|
|
3518
|
+
<search_hit hit_rank="1" peptide="VVVATSSSLLHTPVDLNNETK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 28" tot_num_ions=" 80" calc_neutral_pep_mass="2224.4919" massdiff="-0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3519
|
+
<search_score name="xcorr" value="4.195"/>
|
|
3520
|
+
<search_score name="deltacn" value="0.612"/>
|
|
3521
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3522
|
+
<search_score name="spscore" value="582.0"/>
|
|
3523
|
+
<search_score name="sprank" value="1"/>
|
|
3524
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
3525
|
+
<search_score_summary>
|
|
3526
|
+
<parameter name="fval" value="8.3758"/>
|
|
3527
|
+
<parameter name="ntt" value="2"/>
|
|
3528
|
+
<parameter name="nmc" value="0"/>
|
|
3529
|
+
<parameter name="massd" value="-0.200"/>
|
|
3530
|
+
</search_score_summary>
|
|
3531
|
+
</peptideprophet_result>
|
|
3532
|
+
</search_hit>
|
|
3533
|
+
</search_result>
|
|
3534
|
+
<search_result spectrum="060b.742.742.3" start_scan="742" end_scan="742" precursor_neutral_mass="2226.1919" assumed_charge="3" index="3324">
|
|
3535
|
+
<search_hit hit_rank="1" peptide="VVVATSSSLLHTPVDLNNETK" peptide_prev_aa="R" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 32" tot_num_ions=" 80" calc_neutral_pep_mass="2224.4919" massdiff="+1.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3536
|
+
<search_score name="xcorr" value="4.431"/>
|
|
3537
|
+
<search_score name="deltacn" value="0.632"/>
|
|
3538
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3539
|
+
<search_score name="spscore" value="670.2"/>
|
|
3540
|
+
<search_score name="sprank" value="1"/>
|
|
3541
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
3542
|
+
<search_score_summary>
|
|
3543
|
+
<parameter name="fval" value="8.7331"/>
|
|
3544
|
+
<parameter name="ntt" value="2"/>
|
|
3545
|
+
<parameter name="nmc" value="0"/>
|
|
3546
|
+
<parameter name="massd" value="1.700"/>
|
|
3547
|
+
</search_score_summary>
|
|
3548
|
+
</peptideprophet_result>
|
|
3549
|
+
</search_hit>
|
|
3550
|
+
</search_result>
|
|
3551
|
+
<search_result spectrum="060c.3269.3269.3" start_scan="3269" end_scan="3269" precursor_neutral_mass="3057.6919" assumed_charge="3" index="3589">
|
|
3552
|
+
<search_hit hit_rank="1" peptide="ADKDSLDLEPLSLLEQLLPLYTEILSK" peptide_prev_aa="K" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions="104" calc_neutral_pep_mass="3057.4919" massdiff="+0.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3553
|
+
<search_score name="xcorr" value="3.607"/>
|
|
3554
|
+
<search_score name="deltacn" value="0.256"/>
|
|
3555
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3556
|
+
<search_score name="spscore" value="345.4"/>
|
|
3557
|
+
<search_score name="sprank" value="1"/>
|
|
3558
|
+
<peptideprophet_result probability="0.8839" all_ntt_prob="(0.0000,0.7328,0.8839)">
|
|
3559
|
+
<search_score_summary>
|
|
3560
|
+
<parameter name="fval" value="3.8849"/>
|
|
3561
|
+
<parameter name="ntt" value="2"/>
|
|
3562
|
+
<parameter name="nmc" value="0"/>
|
|
3563
|
+
<parameter name="massd" value="0.200"/>
|
|
3564
|
+
</search_score_summary>
|
|
3565
|
+
</peptideprophet_result>
|
|
3566
|
+
</search_hit>
|
|
3567
|
+
</search_result>
|
|
3568
|
+
<search_result spectrum="900a.1324.1324.3" start_scan="1324" end_scan="1324" precursor_neutral_mass="1710.8919" assumed_charge="3" index="3715">
|
|
3569
|
+
<search_hit hit_rank="1" peptide="YVRPPIIVGDLSRPK" peptide_prev_aa="R" peptide_next_aa="A" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 20" tot_num_ions=" 56" calc_neutral_pep_mass="1709.9919" massdiff="+0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3570
|
+
<search_score name="xcorr" value="2.082"/>
|
|
3571
|
+
<search_score name="deltacn" value="0.312"/>
|
|
3572
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3573
|
+
<search_score name="spscore" value="426.2"/>
|
|
3574
|
+
<search_score name="sprank" value="3"/>
|
|
3575
|
+
<peptideprophet_result probability="0.4879" all_ntt_prob="(0.0000,0.2555,0.4879)">
|
|
3576
|
+
<search_score_summary>
|
|
3577
|
+
<parameter name="fval" value="3.2254"/>
|
|
3578
|
+
<parameter name="ntt" value="2"/>
|
|
3579
|
+
<parameter name="nmc" value="0"/>
|
|
3580
|
+
<parameter name="massd" value="0.900"/>
|
|
3581
|
+
</search_score_summary>
|
|
3582
|
+
</peptideprophet_result>
|
|
3583
|
+
</search_hit>
|
|
3584
|
+
</search_result>
|
|
3585
|
+
<search_result spectrum="900a.1527.1527.3" start_scan="1527" end_scan="1527" precursor_neutral_mass="1946.3920" assumed_charge="3" index="3727">
|
|
3586
|
+
<search_hit hit_rank="1" peptide="WFDSNYHYVRPTFSK" peptide_prev_aa="K" peptide_next_aa="T" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 16" tot_num_ions=" 56" calc_neutral_pep_mass="1947.0920" massdiff="-0.7" num_tol_term="2" num_missed_cleavages="1" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3587
|
+
<search_score name="xcorr" value="2.014"/>
|
|
3588
|
+
<search_score name="deltacn" value="0.389"/>
|
|
3589
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3590
|
+
<search_score name="spscore" value="227.7"/>
|
|
3591
|
+
<search_score name="sprank" value="1"/>
|
|
3592
|
+
<peptideprophet_result probability="0.5746" all_ntt_prob="(0.0000,0.3274,0.5746)">
|
|
3593
|
+
<search_score_summary>
|
|
3594
|
+
<parameter name="fval" value="4.2334"/>
|
|
3595
|
+
<parameter name="ntt" value="2"/>
|
|
3596
|
+
<parameter name="nmc" value="1"/>
|
|
3597
|
+
<parameter name="massd" value="-0.700"/>
|
|
3598
|
+
</search_score_summary>
|
|
3599
|
+
</peptideprophet_result>
|
|
3600
|
+
</search_hit>
|
|
3601
|
+
</search_result>
|
|
3602
|
+
<search_result spectrum="900a.1584.1586.3" start_scan="1584" end_scan="1586" precursor_neutral_mass="1483.5920" assumed_charge="3" index="3730">
|
|
3603
|
+
<search_hit hit_rank="1" peptide="YVRPPIIVGDLSR" peptide_prev_aa="R" peptide_next_aa="P" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 24" tot_num_ions=" 48" calc_neutral_pep_mass="1484.7920" massdiff="-1.2" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3604
|
+
<search_score name="xcorr" value="2.484"/>
|
|
3605
|
+
<search_score name="deltacn" value="0.235"/>
|
|
3606
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3607
|
+
<search_score name="spscore" value="1271.5"/>
|
|
3608
|
+
<search_score name="sprank" value="1"/>
|
|
3609
|
+
<peptideprophet_result probability="0.5334" all_ntt_prob="(0.0000,0.2917,0.5334)">
|
|
3610
|
+
<search_score_summary>
|
|
3611
|
+
<parameter name="fval" value="3.1323"/>
|
|
3612
|
+
<parameter name="ntt" value="2"/>
|
|
3613
|
+
<parameter name="nmc" value="0"/>
|
|
3614
|
+
<parameter name="massd" value="-1.200"/>
|
|
3615
|
+
</search_score_summary>
|
|
3616
|
+
</peptideprophet_result>
|
|
3617
|
+
</search_hit>
|
|
3618
|
+
</search_result>
|
|
3619
|
+
<search_result spectrum="900a.2536.2536.3" start_scan="2536" end_scan="2536" precursor_neutral_mass="1947.3920" assumed_charge="3" index="3771">
|
|
3620
|
+
<search_hit hit_rank="1" peptide="NYPNHIGLGLFDIHSPR" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 23" tot_num_ions=" 64" calc_neutral_pep_mass="1950.1920" massdiff="-2.8" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3621
|
+
<search_score name="xcorr" value="2.914"/>
|
|
3622
|
+
<search_score name="deltacn" value="0.584"/>
|
|
3623
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3624
|
+
<search_score name="spscore" value="523.4"/>
|
|
3625
|
+
<search_score name="sprank" value="1"/>
|
|
3626
|
+
<peptideprophet_result probability="1.0000" all_ntt_prob="(0.0000,1.0000,1.0000)">
|
|
3627
|
+
<search_score_summary>
|
|
3628
|
+
<parameter name="fval" value="7.3109"/>
|
|
3629
|
+
<parameter name="ntt" value="2"/>
|
|
3630
|
+
<parameter name="nmc" value="0"/>
|
|
3631
|
+
<parameter name="massd" value="-2.800"/>
|
|
3632
|
+
</search_score_summary>
|
|
3633
|
+
</peptideprophet_result>
|
|
3634
|
+
</search_hit>
|
|
3635
|
+
</search_result>
|
|
3636
|
+
<search_result spectrum="900a.2541.2541.3" start_scan="2541" end_scan="2541" precursor_neutral_mass="1949.7920" assumed_charge="3" index="3772">
|
|
3637
|
+
<search_hit hit_rank="1" peptide="NYPNHIGLGLFDIHSPR" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 25" tot_num_ions=" 64" calc_neutral_pep_mass="1950.1920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3638
|
+
<search_score name="xcorr" value="3.081"/>
|
|
3639
|
+
<search_score name="deltacn" value="0.505"/>
|
|
3640
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3641
|
+
<search_score name="spscore" value="512.5"/>
|
|
3642
|
+
<search_score name="sprank" value="1"/>
|
|
3643
|
+
<peptideprophet_result probability="0.9984" all_ntt_prob="(0.0000,0.9956,0.9984)">
|
|
3644
|
+
<search_score_summary>
|
|
3645
|
+
<parameter name="fval" value="6.5623"/>
|
|
3646
|
+
<parameter name="ntt" value="2"/>
|
|
3647
|
+
<parameter name="nmc" value="0"/>
|
|
3648
|
+
<parameter name="massd" value="-0.400"/>
|
|
3649
|
+
</search_score_summary>
|
|
3650
|
+
</peptideprophet_result>
|
|
3651
|
+
</search_hit>
|
|
3652
|
+
</search_result>
|
|
3653
|
+
<search_result spectrum="900a.2700.2700.3" start_scan="2700" end_scan="2700" precursor_neutral_mass="1950.5920" assumed_charge="3" index="3780">
|
|
3654
|
+
<search_hit hit_rank="1" peptide="NYPNHIGLGLFDIHSPR" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 19" tot_num_ions=" 64" calc_neutral_pep_mass="1950.1920" massdiff="+0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3655
|
+
<search_score name="xcorr" value="1.852"/>
|
|
3656
|
+
<search_score name="deltacn" value="0.234"/>
|
|
3657
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3658
|
+
<search_score name="spscore" value="184.9"/>
|
|
3659
|
+
<search_score name="sprank" value="3"/>
|
|
3660
|
+
<peptideprophet_result probability="0.2316" all_ntt_prob="(0.0000,0.0979,0.2316)">
|
|
3661
|
+
<search_score_summary>
|
|
3662
|
+
<parameter name="fval" value="1.9937"/>
|
|
3663
|
+
<parameter name="ntt" value="2"/>
|
|
3664
|
+
<parameter name="nmc" value="0"/>
|
|
3665
|
+
<parameter name="massd" value="0.400"/>
|
|
3666
|
+
</search_score_summary>
|
|
3667
|
+
</peptideprophet_result>
|
|
3668
|
+
</search_hit>
|
|
3669
|
+
</search_result>
|
|
3670
|
+
<search_result spectrum="900c.3021.3021.3" start_scan="3021" end_scan="3021" precursor_neutral_mass="3058.0919" assumed_charge="3" index="4212">
|
|
3671
|
+
<search_hit hit_rank="1" peptide="ADKDSLDLEPLSLLEQLLPLYTEILSK" peptide_prev_aa="K" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 28" tot_num_ions="104" calc_neutral_pep_mass="3057.4919" massdiff="+0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3672
|
+
<search_score name="xcorr" value="4.211"/>
|
|
3673
|
+
<search_score name="deltacn" value="0.396"/>
|
|
3674
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3675
|
+
<search_score name="spscore" value="446.3"/>
|
|
3676
|
+
<search_score name="sprank" value="1"/>
|
|
3677
|
+
<peptideprophet_result probability="0.9865" all_ntt_prob="(0.0000,0.9633,0.9865)">
|
|
3678
|
+
<search_score_summary>
|
|
3679
|
+
<parameter name="fval" value="5.8209"/>
|
|
3680
|
+
<parameter name="ntt" value="2"/>
|
|
3681
|
+
<parameter name="nmc" value="0"/>
|
|
3682
|
+
<parameter name="massd" value="0.600"/>
|
|
3683
|
+
</search_score_summary>
|
|
3684
|
+
</peptideprophet_result>
|
|
3685
|
+
</search_hit>
|
|
3686
|
+
</search_result>
|
|
3687
|
+
<search_result spectrum="900c.3027.3027.3" start_scan="3027" end_scan="3027" precursor_neutral_mass="3056.8919" assumed_charge="3" index="4213">
|
|
3688
|
+
<search_hit hit_rank="1" peptide="ADKDSLDLEPLSLLEQLLPLYTEILSK" peptide_prev_aa="K" peptide_next_aa="L" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 30" tot_num_ions="104" calc_neutral_pep_mass="3057.4919" massdiff="-0.6" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3689
|
+
<search_score name="xcorr" value="4.113"/>
|
|
3690
|
+
<search_score name="deltacn" value="0.439"/>
|
|
3691
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3692
|
+
<search_score name="spscore" value="472.0"/>
|
|
3693
|
+
<search_score name="sprank" value="1"/>
|
|
3694
|
+
<peptideprophet_result probability="0.9953" all_ntt_prob="(0.0000,0.9869,0.9953)">
|
|
3695
|
+
<search_score_summary>
|
|
3696
|
+
<parameter name="fval" value="6.2506"/>
|
|
3697
|
+
<parameter name="ntt" value="2"/>
|
|
3698
|
+
<parameter name="nmc" value="0"/>
|
|
3699
|
+
<parameter name="massd" value="-0.600"/>
|
|
3700
|
+
</search_score_summary>
|
|
3701
|
+
</peptideprophet_result>
|
|
3702
|
+
</search_hit>
|
|
3703
|
+
</search_result>
|
|
3704
|
+
<search_result spectrum="900c.630.630.2" start_scan="630" end_scan="630" precursor_neutral_mass="1949.2920" assumed_charge="2" index="4235">
|
|
3705
|
+
<search_hit hit_rank="1" peptide="NYPNHIGLGLFDIHSPR" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 19" tot_num_ions=" 32" calc_neutral_pep_mass="1950.1920" massdiff="-0.9" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3706
|
+
<search_score name="xcorr" value="2.812"/>
|
|
3707
|
+
<search_score name="deltacn" value="0.495"/>
|
|
3708
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3709
|
+
<search_score name="spscore" value="795.7"/>
|
|
3710
|
+
<search_score name="sprank" value="1"/>
|
|
3711
|
+
<peptideprophet_result probability="0.9960" all_ntt_prob="(0.0000,0.9922,0.9960)">
|
|
3712
|
+
<search_score_summary>
|
|
3713
|
+
<parameter name="fval" value="4.9509"/>
|
|
3714
|
+
<parameter name="ntt" value="2"/>
|
|
3715
|
+
<parameter name="nmc" value="0"/>
|
|
3716
|
+
<parameter name="massd" value="-0.900"/>
|
|
3717
|
+
</search_score_summary>
|
|
3718
|
+
</peptideprophet_result>
|
|
3719
|
+
</search_hit>
|
|
3720
|
+
</search_result>
|
|
3721
|
+
<search_result spectrum="900c.633.633.2" start_scan="633" end_scan="633" precursor_neutral_mass="1949.1920" assumed_charge="2" index="4236">
|
|
3722
|
+
<search_hit hit_rank="1" peptide="NYPNHIGLGLFDIHSPR" peptide_prev_aa="K" peptide_next_aa="I" protein="gi|6320936|ref|NP_011015.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 32" calc_neutral_pep_mass="1950.1920" massdiff="-1.0" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="vitamin B12-(cobalamin)-independent isozyme of methionine synthase (also called N5-methyltetrahydrofolate homocysteine methyltransferase or 5-methyltetrahydropteroyl triglutamate homocysteine methyltransferase); Met6p [Saccharomyces cerevisiae]">
|
|
3723
|
+
<search_score name="xcorr" value="3.724"/>
|
|
3724
|
+
<search_score name="deltacn" value="0.617"/>
|
|
3725
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3726
|
+
<search_score name="spscore" value="1182.1"/>
|
|
3727
|
+
<search_score name="sprank" value="1"/>
|
|
3728
|
+
<peptideprophet_result probability="0.9992" all_ntt_prob="(0.0000,0.9983,0.9992)">
|
|
3729
|
+
<search_score_summary>
|
|
3730
|
+
<parameter name="fval" value="6.6117"/>
|
|
3731
|
+
<parameter name="ntt" value="2"/>
|
|
3732
|
+
<parameter name="nmc" value="0"/>
|
|
3733
|
+
<parameter name="massd" value="-1.000"/>
|
|
3734
|
+
</search_score_summary>
|
|
3735
|
+
</peptideprophet_result>
|
|
3736
|
+
</search_hit>
|
|
3737
|
+
</search_result>
|
|
3738
|
+
<search_result spectrum="005b.3269.3269.2" start_scan="3269" end_scan="3269" precursor_neutral_mass="1762.4919" assumed_charge="2" index="806">
|
|
3739
|
+
<search_hit hit_rank="1" peptide="ALGIMALLDEGETDWK" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6319483|ref|NP_009565.1|" num_tot_proteins="1" num_matched_ions=" 21" tot_num_ions=" 30" calc_neutral_pep_mass="1761.9919" massdiff="+0.5" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Inorganic pyrophosphatase; Ipp1p [Saccharomyces cerevisiae]">
|
|
3740
|
+
<search_score name="xcorr" value="5.071"/>
|
|
3741
|
+
<search_score name="deltacn" value="0.591"/>
|
|
3742
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3743
|
+
<search_score name="spscore" value="1694.0"/>
|
|
3744
|
+
<search_score name="sprank" value="1"/>
|
|
3745
|
+
<peptideprophet_result probability="0.9997" all_ntt_prob="(0.0000,0.9994,0.9997)">
|
|
3746
|
+
<search_score_summary>
|
|
3747
|
+
<parameter name="fval" value="7.2656"/>
|
|
3748
|
+
<parameter name="ntt" value="2"/>
|
|
3749
|
+
<parameter name="nmc" value="0"/>
|
|
3750
|
+
<parameter name="massd" value="0.500"/>
|
|
3751
|
+
</search_score_summary>
|
|
3752
|
+
</peptideprophet_result>
|
|
3753
|
+
</search_hit>
|
|
3754
|
+
</search_result>
|
|
3755
|
+
<search_result spectrum="020a.783.783.2" start_scan="783" end_scan="783" precursor_neutral_mass="923.0920" assumed_charge="2" index="1742">
|
|
3756
|
+
<search_hit hit_rank="1" peptide="ATNEWFR" peptide_prev_aa="R" peptide_next_aa="I" protein="gi|6319483|ref|NP_009565.1|" num_tot_proteins="1" num_matched_ions=" 10" tot_num_ions=" 12" calc_neutral_pep_mass="922.9920" massdiff="+0.1" num_tol_term="2" num_missed_cleavages="-1" is_rejected="0" protein_descr="Inorganic pyrophosphatase; Ipp1p [Saccharomyces cerevisiae]">
|
|
3757
|
+
<search_score name="xcorr" value="1.684"/>
|
|
3758
|
+
<search_score name="deltacn" value="0.414"/>
|
|
3759
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3760
|
+
<search_score name="spscore" value="668.4"/>
|
|
3761
|
+
<search_score name="sprank" value="1"/>
|
|
3762
|
+
<peptideprophet_result probability="0.8512" all_ntt_prob="(0.0000,0.7436,0.8512)">
|
|
3763
|
+
<search_score_summary>
|
|
3764
|
+
<parameter name="fval" value="3.3678"/>
|
|
3765
|
+
<parameter name="ntt" value="2"/>
|
|
3766
|
+
<parameter name="nmc" value="0"/>
|
|
3767
|
+
<parameter name="massd" value="0.100"/>
|
|
3768
|
+
</search_score_summary>
|
|
3769
|
+
</peptideprophet_result>
|
|
3770
|
+
</search_hit>
|
|
3771
|
+
</search_result>
|
|
3772
|
+
<search_result spectrum="020b.1202.1202.2" start_scan="1202" end_scan="1202" precursor_neutral_mass="1378.1920" assumed_charge="2" index="1791">
|
|
3773
|
+
<search_hit hit_rank="1" peptide="VIAIDINDPLAPK" peptide_prev_aa="K" peptide_next_aa="L" protein="gi|6319483|ref|NP_009565.1|" num_tot_proteins="1" num_matched_ions=" 13" tot_num_ions=" 24" calc_neutral_pep_mass="1378.5920" massdiff="-0.4" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Inorganic pyrophosphatase; Ipp1p [Saccharomyces cerevisiae]">
|
|
3774
|
+
<search_score name="xcorr" value="2.296"/>
|
|
3775
|
+
<search_score name="deltacn" value="0.444"/>
|
|
3776
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3777
|
+
<search_score name="spscore" value="328.4"/>
|
|
3778
|
+
<search_score name="sprank" value="1"/>
|
|
3779
|
+
<peptideprophet_result probability="0.8711" all_ntt_prob="(0.0000,0.7740,0.8711)">
|
|
3780
|
+
<search_score_summary>
|
|
3781
|
+
<parameter name="fval" value="4.1233"/>
|
|
3782
|
+
<parameter name="ntt" value="2"/>
|
|
3783
|
+
<parameter name="nmc" value="0"/>
|
|
3784
|
+
<parameter name="massd" value="-0.400"/>
|
|
3785
|
+
</search_score_summary>
|
|
3786
|
+
</peptideprophet_result>
|
|
3787
|
+
</search_hit>
|
|
3788
|
+
</search_result>
|
|
3789
|
+
<search_result spectrum="060b.3022.3022.2" start_scan="3022" end_scan="3022" precursor_neutral_mass="1764.6919" assumed_charge="2" index="3151">
|
|
3790
|
+
<search_hit hit_rank="1" peptide="ALGIMALLDEGETDWK" peptide_prev_aa="K" peptide_next_aa="V" protein="gi|6319483|ref|NP_009565.1|" num_tot_proteins="1" num_matched_ions=" 10" tot_num_ions=" 30" calc_neutral_pep_mass="1761.9919" massdiff="+2.7" num_tol_term="2" num_missed_cleavages="0" is_rejected="0" protein_descr="Inorganic pyrophosphatase; Ipp1p [Saccharomyces cerevisiae]">
|
|
3791
|
+
<search_score name="xcorr" value="1.528"/>
|
|
3792
|
+
<search_score name="deltacn" value="0.331"/>
|
|
3793
|
+
<search_score name="deltacnstar" value="0"/>
|
|
3794
|
+
<search_score name="spscore" value="234.1"/>
|
|
3795
|
+
<search_score name="sprank" value="1"/>
|
|
3796
|
+
<peptideprophet_result probability="0.0789" all_ntt_prob="(0.0000,0.0416,0.0789)">
|
|
3797
|
+
<search_score_summary>
|
|
3798
|
+
<parameter name="fval" value="2.0832"/>
|
|
3799
|
+
<parameter name="ntt" value="2"/>
|
|
3800
|
+
<parameter name="nmc" value="0"/>
|
|
3801
|
+
<parameter name="massd" value="2.700"/>
|
|
3802
|
+
</search_score_summary>
|
|
3803
|
+
</peptideprophet_result>
|
|
3804
|
+
</search_hit>
|
|
3805
|
+
</search_result>
|
|
3806
|
+
</msms_run_summary>
|
|
3807
|
+
</msms_pipeline_analysis>
|