Previous changeset 2:a35fde23940e (2022-06-08) Next changeset 4:856001213966 (2022-07-06) |
Commit message:
planemo upload commit 09540e3a13b630b078a35afd3e129bc18c9953f0 |
modified:
MS2snoop.R MS2snoop.xml README.md |
added:
macros.xml test-data/compounds_pos.csv test-data/peaklist_precursors.csv |
b |
diff -r a35fde23940e -r c68c94865667 MS2snoop.R --- a/MS2snoop.R Wed Jun 08 12:37:53 2022 +0000 +++ b/MS2snoop.R Wed Jun 22 13:07:01 2022 +0000 |
[ |
@@ -15,7 +15,7 @@ #' -assign("MS2SNOOP_VERSION", "1.0.1") +assign("MS2SNOOP_VERSION", "1.1.0") lockBinding("MS2SNOOP_VERSION", globalenv()) assign("MISSING_PARAMETER_ERROR", 1) @@ -202,10 +202,10 @@ c_name, min_number_scan, mzdecimal, - r_threshold=DEFAULT_EXTRACT_FRAGMENTS_R_THRESHOLD, - seuil_ra=DEFAULT_EXTRACT_FRAGMENTS_SEUIL_RA, - tolmz=DEFAULT_EXTRACT_FRAGMENTS_TOLMZ, - tolrt=DEFAULT_EXTRACT_FRAGMENTS_TOLRT + r_threshold = DEFAULT_EXTRACT_FRAGMENTS_R_THRESHOLD, + seuil_ra = DEFAULT_EXTRACT_FRAGMENTS_SEUIL_RA, + tolmz = DEFAULT_EXTRACT_FRAGMENTS_TOLMZ, + tolrt = DEFAULT_EXTRACT_FRAGMENTS_TOLRT ) { ## filter precursor in the precursors file based on mz and rt in the ## compound list @@ -252,6 +252,7 @@ if (global_verbose) { cat(" fragments :", vmz) + cat("\n") } ## mz of precursor in data precursor to check correlation with @@ -372,9 +373,6 @@ if (!is.null(res_comp_by_file)) { res_comp <- rbind(res_comp, res_comp_by_file) } - if (global_verbose) { - cat("\n") - } dev.off() } } else { @@ -625,6 +623,43 @@ } } +get_csv_or_tsv <- function( + path, + sep_stack = c("\t", ",", ";"), + header = TRUE, + quote = "\"" +) { + sep <- sep_stack[1] + result <- tryCatch({ + read.table( + file = path, + sep = sep, + header = header, + quote = quote + ) + }, error = function(e) { + return(data.frame()) + }) + if (length(sep_stack) == 1) { + return(result) + } + # if ( + # ncol(result) == 0 || ## failed + # ncol(result) == 1 ## only one row, suspicious, possible fail # nolint + # ) { + new_result <- get_csv_or_tsv( + path, + sep_stack = sep_stack[-1], + header = header, + quote = quote + ) + if (ncol(new_result) > ncol(result)) { + return(new_result) + } + # } + return(result) +} + main <- function(args) { if (args$version) { cat(sprintf("%s\n", MS2SNOOP_VERSION)) @@ -639,26 +674,11 @@ set_verbose() } ## MSpurity precursors file - precursors <- read.table( - file = args$precursors, - header = TRUE, - sep = "\t", - quote = "\"" - ) + precursors <- get_csv_or_tsv(args$precursors) ## MSpurity fragments file - fragments <- read.table( - file = args$fragments, - header = TRUE, - sep = "\t", - quote = "\"" - ) + fragments <- get_csv_or_tsv(args$fragments) ## list of compounds : col1=Name of molecule, col2=m/z, col3=retention time - compounds <- read.table( - file = args$compounds, - sep = "\t", - quote = "\"", - header = TRUE - ) + compounds <- get_csv_or_tsv(args$compounds) res_all <- NULL for (i in seq_len(nrow(compounds))) { |
b |
diff -r a35fde23940e -r c68c94865667 MS2snoop.xml --- a/MS2snoop.xml Wed Jun 08 12:37:53 2022 +0000 +++ b/MS2snoop.xml Wed Jun 22 13:07:01 2022 +0000 |
[ |
@@ -3,8 +3,9 @@ MS1/MS2 spectra and associated adducts extraction and cleaning </description> <macros> - <token name="@TOOL_VERSION@">1.0.1</token> - <token name="@VERSION_SUFFIX@">1</token> + <import>macros.xml</import> + <token name="@TOOL_VERSION@">1.1.0</token> + <token name="@VERSION_SUFFIX@">0</token> </macros> <edam_topics> <edam_topic>topic_0091</edam_topic> @@ -50,20 +51,20 @@ <param argument="--compound_txt" type="data" - format="tabular,csv" + format="tabular,csv,tsv" label="list of compounds" help="The table must fit the format: col1=Name of molecule, col2=m/z, col3=retention time" /> <param argument="--peaklist_frag_tsv" type="data" - format="tabular,csv" + format="tabular,csv,tsv" label="MSpurity fragments file" /> <param argument="--peaklist_preco_tsv" type="data" - format="tabular,csv" + format="tabular,csv,tsv" label="MSpurity precursors file" /> <param @@ -150,6 +151,96 @@ <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> <param name="peaklist_preco_tsv" value="peaklist_precursors.tsv" /> <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_regular_stdout"/> + <expand macro="has_not_verbose_stdout"/> + <expand macro="has_not_debug_stdout"/> + </assert_stdout> + </test> + <test> + <param name="compound_txt" value="compounds_pos.txt" /> + <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> + <param name="peaklist_preco_tsv" value="peaklist_precursors.tsv" /> + <param name="verbose" value="--verbose" /> + <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_regular_stdout"/> + <expand macro="has_verbose_stdout"/> + <expand macro="has_not_debug_stdout"/> + </assert_stdout> + </test> + <test> + <param name="compound_txt" value="compounds_pos.txt" /> + <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> + <param name="peaklist_preco_tsv" value="peaklist_precursors.tsv" /> + <param name="debug" value="--debug" /> + <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_smol_stdout"/> + <expand macro="has_debug_stdout"/> + <expand macro="has_not_verbose_stdout"/> + </assert_stdout> + </test> + <test> + <param name="compound_txt" value="compounds_pos.txt" /> + <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> + <param name="peaklist_preco_tsv" value="peaklist_precursors.tsv" /> + <param name="debug" value="--debug" /> + <param name="verbose" value="--verbose" /> + <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_smol_stdout"/> + <expand macro="has_debug_stdout"/> + <expand macro="has_smol_verbose_stdout"/> + </assert_stdout> + </test> + <test> + <param name="compound_txt" value="compounds_pos.csv" /> + <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> + <param name="peaklist_preco_tsv" value="peaklist_precursors.csv" /> + <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_regular_stdout"/> + <expand macro="has_not_verbose_stdout"/> + <expand macro="has_not_debug_stdout"/> + </assert_stdout> + </test> + <test> + <param name="compound_txt" value="compounds_pos.csv" /> + <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> + <param name="peaklist_preco_tsv" value="peaklist_precursors.csv" /> + <param name="verbose" value="--verbose" /> + <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_regular_stdout"/> + <expand macro="has_verbose_stdout"/> + <expand macro="has_not_debug_stdout"/> + </assert_stdout> + </test> + <test> + <param name="compound_txt" value="compounds_pos.csv" /> + <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> + <param name="peaklist_preco_tsv" value="peaklist_precursors.csv" /> + <param name="debug" value="--debug" /> + <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_smol_stdout"/> + <expand macro="has_debug_stdout"/> + <expand macro="has_not_verbose_stdout"/> + </assert_stdout> + </test> + <test> + <param name="compound_txt" value="compounds_pos.csv" /> + <param name="peaklist_frag_tsv" value="peaklist_fragments.tsv" /> + <param name="peaklist_preco_tsv" value="peaklist_precursors.csv" /> + <param name="debug" value="--debug" /> + <param name="verbose" value="--verbose" /> + <output name="frag_result_txt" file="compound_fragments_result.txt" /> + <assert_stdout> + <expand macro="has_smol_stdout"/> + <expand macro="has_debug_stdout"/> + <expand macro="has_smol_verbose_stdout"/> + </assert_stdout> </test> </tests> <help><![CDATA[ @@ -163,7 +254,7 @@ ============== -MS2 validation +MS2 validation ============== ----------- |
b |
diff -r a35fde23940e -r c68c94865667 README.md --- a/README.md Wed Jun 08 12:37:53 2022 +0000 +++ b/README.md Wed Jun 22 13:07:01 2022 +0000 |
b |
@@ -5,7 +5,7 @@ ----------- * **@name**: MS2 Snoop - * **@version**: 1.0.1 + * **@version**: 1.1.0 * **@authors**: Jean François Martin (INRAE) * **@maintainers**: Lain Pavot (PFEM - INRAE - MetaboHUB) * **@init date**: 2022, April |
b |
diff -r a35fde23940e -r c68c94865667 macros.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/macros.xml Wed Jun 22 13:07:01 2022 +0000 |
b |
b'@@ -0,0 +1,131 @@\n+<macros>\n+\n+\n+ <xml name="has_smol_stdout">\n+ <has_line line="processing 2-diethylamino-6-methyl pyrimidin-4-ol one " />\n+ <has_line line="processing 5-hydroxy-thiabendazole " />\n+ <has_line line="processing Tylosin " />\n+ </xml>\n+\n+ <xml name="has_regular_stdout">\n+ <has_line line="processing 2-diethylamino-6-methyl pyrimidin-4-ol one " />\n+ <has_line line="processing 5-hydroxy-thiabendazole " />\n+ <has_line line="processing acetamiprid-N-desmethyl " />\n+ <has_line line="processing Acetochlor " />\n+ <has_line line="processing Avermectin B1a (Abamectin) " />\n+ <has_line line="processing Benzophenone-3 (Oxybenzone) " />\n+ <has_line line="processing Butocarboxim " />\n+ <has_line line="processing Carbendazim " />\n+ <has_line line="processing Cefoperazone " />\n+ <has_line line="processing Chlorfenvinphos " />\n+ <has_line line="processing Chlormequat " />\n+ <has_line line="processing Desisopropylatrazine " />\n+ <has_line line="processing Dichlorvos " />\n+ <has_line line="processing Dimethyldithiophosphate " />\n+ <has_line line="processing Emamectin B1a " />\n+ <has_line line="processing Fluopyram " />\n+ <has_line line="processing Hydroxy-tebuconazole " />\n+ <has_line line="processing Isoproturon " />\n+ <has_line line="processing Ivermectin B1a " />\n+ <has_line line="processing Malathion dicarboxilic acid " />\n+ <has_line line="processing Methamidophos " />\n+ <has_line line="processing Metolachlor " />\n+ <has_line line="processing N,N-diethyl-m-toluamide ou DEET " />\n+ <has_line line="processing Nigericin " />\n+ <has_line line="processing Omethoate " />\n+ <has_line line="processing Prochloraz " />\n+ <has_line line="processing p-Toluenesulfonamide " />\n+ <has_line line="processing Rifaximin " />\n+ <has_line line="processing Spinosad A (Spinosyn A) " />\n+ <has_line line="processing TCMTB " />\n+ <has_line line="processing Trichlorfon (Dylox) " />\n+ <has_line line="processing Tylosin " />\n+ <has_line line=" non detected in precursor file " min="6" />\n+ </xml>\n+\n+ <xml name="has_not_debug_stdout">\n+ <has_line negate="true" line=" acquisitionNum mz68 mz71 mz74 mz81 mz82 mz83" />\n+ <has_line negate="true" line=" acquisitionNum mz67 mz71 mz84 mz85 mz86 mz87" />\n+ <has_line negate="true" line=" mz243 mz248 mz256 mz257 mz258" />\n+ </xml>\n+\n+ <xml name="has_debug_stdout">\n+ <has_line line=" acquisitionNum mz68 mz71 mz74 mz81 mz82 mz83" />\n+ <has_line line=" acquisitionNum mz67 mz71 mz84 mz85 mz86 mz87" />\n+ <!-- \n+ <has_line line=" acquisitionNum mz63 mz67 mz71 mz73 mz77 mz79" />\n+ <has_line line=" acquisitionNum mz79 mz81 mz84 mz86 mz88 mz90" />\n+ <has_line line=" acquisitionNum mz67 mz69 mz71 mz72 mz73 mz75" />\n+ <has_line line=" acquisitionNum mz99 mz100 mz109 mz132 mz135 mz142 mz145" />\n+ <has_line line=" acquisitionNum mz105 mz109 mz111 mz112 mz114 mz115" />\n+ <has_line line=" acquisitionNum mz105 mz109 mz111 mz116 mz119 mz125" />\n+ <has_line line=" acquisitionNum mz79 mz91 mz92 mz94 mz103 mz104" />\n+ <has_line line=" acquisitionNum mz61 mz73 mz76 mz79 mz91 mz92" />\n+ <has_line line=" acquisitionNum mz67 mz72 mz73 mz76 mz77 mz78" />\n+ <has_line line=" acquisitionNum mz123 mz124 mz125 mz127 mz130 mz131" />\n+ <has_line line=" acquisitionNum mz96 mz97 mz99 mz100 mz101 mz103" />\n+ <has_line line=" acquisitionNum mz69 mz72 mz73 mz79 mz81 mz85" />\n+ <has_line line=" acquisitionNum mz82 mz83 '..b'214 217 218 221 222 223 224 225 226 227 228 230 232 233 234 235 236 238 239 240 242 243 244 245 246 247 248 249 250 251 252 254 255 256 258 259 260 261 263 264 265 266 268 272 273 274 275 276 278 280 282 286 287 288 289 291 292 293 294 296 297 298 299 300 301 302 303 304 308 309 310 312 314 315 316 317 318 320 322 326 328 330 331 332 333 334 337 338 340 341 342 343 344 345 346 347 348 352 353 354 358 359 360 361 362 367 375 376" />\n+ <has_line line=" fragments : 86 90 91 94 99 100 101 106 111 112 113 114 116 126 128 129 130 131 134 136 138 139 140 141 142 143 144 146 152 154 155 156 157 158 168 170 172 173" />\n+ <has_line line=" fragments : 219 221 223 225 226 227 229 230 231 233 234 242 243 249 250 251 253 255 265 269 270 271 275 276 279 280 285 286 287 289 291 292 297 301 303 305 307 308 312 313 315 316 318 319 329 332 333 334 344 345 346 347 348 349 357 360 361 362 363 365 366 372 373 376 377 378 385 386 387 388 389 390 394 395 397 398 399 400 401 403 404 408 409 411 412 414 418 419 427 438 439 440 441 442 443 444 445 447 448 454 455 456 457 458 464 466 467 469 478 479 480 482 483 484 486 487 494 495 496 498 501 502 504 505 506 508 509 511 512 513 514 515 516 518 524 525 526 529 531 534 536 537 538 539 540 542 543 546 550 551 552 553 554 555 559 561 564 567 570 571 572 581 582 584 585 586 591 592 593 596 597 598 601 602 604 606 607 609 611 612 613 614 615 617 618 619 621 622 623 624 625 626 627 628 632 636 638 639 640 641 642 643 644 645 646 648 649 650 651 652 653 654 655 656 657 658 659 661 663 665 666 667 669 670 671 672 673 674 675 676 677 678 679 680 682 684 685 686 688 689 690 691 692 694 695 696 698 699 700 701 702 703 704 706 708 709 710 712 713 714 716 718 719 720 722 724 725 726 727 728 729 730 731 732 733 735 736 737 739 740 741 742 743 744 745 747 748 750 751 752 753 754 755 756 758 760 765 766 768 769 770 771 773 774 775 776 777 778 780 784 786 787 788 796" />\n+ <has_line line=" fragments : 230 233 241 243 255 260 261 266 267 269 285 295 301 309 310 318 321 326 327 332 339 345 362 371 372 373 375 377 395 400 406 408 411 412 416 418 424 425 439 440 446 449 452 457 459 468 473 474 482 486 489 490 491 494 499 500 501 503 506 507 508 509 510 511 514 516 519 522 523 525 538 539 541 543 545 546 551 552 556 557 560 564 565 568 570 572 573 580 582 584 585 586 588 590 592 600 602 604 606 607 608 609 612 615 618 623 624 628 636 637 638 639 641 642 643 647 649 650 652 655 659 663 670 671 672 673 674 679 680 682 683 684 685 686 688 690 691 692 693 696 699 700 701 702 705 706 707 709 711 712 714 715 716 717 718 723 724 726 728 729 730 731 732 733 738 742" />\n+ <has_line line=" fragments : 75 81 89 91 93 95 97 99 105 106 107 109 110 111 113 115 119 121 123 125 127 129 133 135 136 137 139 141 149 151 153 155 156 157 158 159 161 163 164 165 166 167 168 169 171 173 175 177 179 180 181 183 185 189 191 193 194 195 196 197 198 203 205 206 207 209 211 212 218 219 221 222 223 225 227 229 238 239 240 241" />\n+ <has_line line=" fragments : 69 72 75 80 81 83 86 89 91 93 94 95 96 97 98 99 100 103 104 105 107 109 110 111 113 114 115 116 117 118 119 121 122 123 124 125 127 128 129 131 132 133 134 135 136 137 138 139 140 141 142 143 145 146 147 149 150 151 152 153 154 155 157 158 159 160 161 163 164 165 166 167 168 169 170 171 173 175 177 178 179 180 181 182 183 185 187 189 191 192 193 194 195 196 197 198 199 201 202 203 204 205 206 207 208 209 211 212 213 214 217 218 219 221 222 223 224 225 227 229 230 231 237 239 240 241 247" />\n+ <has_line line=" fragments : 77 79 81 82 83 85 88 89 91 92 93 95 96 97 99 101 103 105 106 107 108 109 110 111 113 114 115 117 118 119 121 125 127 129 131 133 135 137 138 139 140 141 142 143 145 147 148 149 153 154 155 156 159 161 163 165 167 169 171 172 173 174 175 177 178 179 181 183 184 185 186 187 191 193 195 196 197 198 199 200 201 203 205 209 211 212 213 214 215 219 221 222 224 225 226 227 228 229 236 239 240 241 243 248 256 257 258" />\n+ </xml>\n+\n+</macros>\n\\ No newline at end of file\n' |
b |
diff -r a35fde23940e -r c68c94865667 test-data/compounds_pos.csv --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/compounds_pos.csv Wed Jun 22 13:07:01 2022 +0000 |
b |
@@ -0,0 +1,33 @@ +Compounds,mz,rt +2-diethylamino-6-methyl pyrimidin-4-ol one,182.12879,345.0 +5-hydroxy-thiabendazole,218.03826,315.0 +acetamiprid-N-desmethyl,209.05885,526.2 +Acetochlor,270.12554,1158.6 +Avermectin B1a (Abamectin),895.49221,1663.8 +Benzophenone-3 (Oxybenzone),229.08592,1178.4 +Butocarboxim,191.0849,1267.8 +Carbendazim,192.07676,339.0 +Cefoperazone,646.1497,1755.0 +Chlorfenvinphos,358.97681,1255.8 +Chlormequat,122.0737,54.0 +Desisopropylatrazine,174.0541,399.0 +Dichlorvos,220.9532,763.2 +Dimethyldithiophosphate,158.96979,615.0 +Emamectin B1a,886.5311,1663.8 +Fluopyram,397.05369,1161.0 +Hydroxy-tebuconazole,324.14733,1098.6 +Isoproturon,207.14919,936.0 +Ivermectin B1a ,897.4971,1650.0 +Malathion dicarboxilic acid,274.98075,574.8 +Methamidophos,142.0086,139.2 +Metolachlor,284.14119,1158.0 +"N,N-diethyl-m-toluamide ou DEET",192.13829,945.0 +Nigericin,747.4654,1663.8 +Omethoate,214.02975,237.0 +Prochloraz,376.03809,1271.4 +p-Toluenesulfonamide,172.04323,393.0 +Rifaximin,786.3596,1183.2 +Spinosad A (Spinosyn A),732.4681,1212.0 +TCMTB,238.9766,1032.0 +Trichlorfon (Dylox),256.9299,444.0 +Tylosin,916.5264,909.0 |
b |
diff -r a35fde23940e -r c68c94865667 test-data/peaklist_precursors.csv --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/peaklist_precursors.csv Wed Jun 22 13:07:01 2022 +0000 |
b |
b'@@ -0,0 +1,2737 @@\n+"grpid","mz","mzmin","mzmax","rt","rtmin","rtmax","into","intb","maxo","sn","sample","cid","filename","rtminCorrected","rtmaxCorrected","inPurity","pid","precurMtchID","precurMtchScan","precurMtchRT","precurMtchMZ","precurMtchPPM","retentionTime","fileid","seqNum","purity_pass_flag"\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.526099609140227,6641,218,217,64.8261,121.993896484375,0.140714213529811,65.2467,3,218,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.619848678681211,6642,220,219,65.45110000002,121.993927001953,0.390870846760767,65.8653,3,220,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.644526797604947,6643,222,221,66.06730000002,121.993927001953,0.390870846760767,66.4824,3,222,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.676966047514146,6644,224,223,66.6843,121.99388885498,0.078175055222072,67.0848,3,224,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.68608788635813,6645,226,225,67.28710000002,121.993942260742,0.515949163376245,67.70029999998,3,226,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.684455958554202,6646,228,227,67.90180000002,121.993850708008,0.234520736316623,68.3004,3,228,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.688216134028105,6647,230,229,68.55730000002,121.993896484375,0.140714213529811,68.9097,3,230,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.678494133618856,6648,232,231,69.11149999998,121.993766784668,0.922451477701752,69.50440000002,3,232,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.689255752664959,6649,234,233,69.73219999998,121.993911743164,0.265792530145289,70.11580000002,3,234,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.690259159694382,6650,236,235,70.31740000002,121.993774414062,0.859912319394013,70.71610000002,3,236,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.659035680748578,6651,238,237,70.91809999998,121.99397277832,0.766105796607201,71.33500000002,3,238,TRUE\n+"674",121.993879318102,121.993766784668,121.99397277832,69.4840944720271,63.56629999998,78.89839999998,3933750.80009461,3933736.08127861,395685,395684,3,16484,"HBMSPE21_024.mzML",62.750400858841,78.0434285273669,0.662906551706382,665'..b'1469209856,0.751950734819109,13166,6147,6145,1770.32089999998,873.180786132812,0.757683243938348,1770.7449,4,6147,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.637591184015317,13168,6150,6148,1770.9837,873.179992675781,0.151014754277122,1771.39639999998,4,6150,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.6503669640687,13170,6153,6151,1771.6353,873.180114746094,0.0112150622439731,1772.04370000002,4,6153,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.884779527882909,13172,6156,6154,1772.28250000002,873.180053710938,0.0811149082605477,1772.68750000002,4,6156,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,1,13174,6159,6157,1772.9271,873.179931640625,0.220914600293697,1773.33430000002,4,6159,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.778237166475757,13176,6162,6160,1773.57409999998,873.180297851562,0.198484475805751,1773.9828,4,6162,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.889118583237879,13178,6165,6163,1774.2222,873.179870605469,0.290814446310272,1774.62769999998,4,6165,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,1,13180,6168,6166,1774.8666,873.179321289062,0.919913060459443,1775.2743,4,6168,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.784293581118569,13182,6171,6169,1775.51320000002,873.180297851562,0.198484475805751,1775.91739999998,4,6171,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.640434668289083,13184,6174,6172,1776.15859999998,873.181213378906,1.24698216605437,1776.56419999998,4,6174,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,1,13186,6177,6175,1776.80350000002,873.175964355469,4.76440459137105,1777.20790000002,4,6177,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,1,13188,6180,6178,1777.44670000002,873.178894042969,1.40921198257547,1777.84939999998,4,6180,TRUE\n+"18503",873.180124538863,873.175964355469,873.181213378906,1778.9493514839,1768.3785,1779.38029999998,4604805.57164452,4604795.21700923,1082429.25,1082428,4,29474,"HBMSPE21_078.mzML",1774.52021092601,1785.21469209856,0.715246610379728,13190,6183,6181,1778.08849999998,873.179443359375,0.780113368426294,1778.49469999998,4,6183,TRUE\n' |