Documentation for ChemicalSamplers.py
Sampling classes for ChemicalMixtureCreator
CRPMS2Sampler
Bases: MS2Sampler
A sampler that generates MS2 peaks following the Chinese Restaurant Process (CRP), i.e. an MS2 peak that has been selected in one spectra has a higher likelihood to appear again elsewhere.
Source code in vimms/ChemicalSamplers.py
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 | |
__init__(n_draws=1000, min_mz=MIN_MZ_MS2, min_proportion=0.1, max_proportion=0.8, alpha=1, base='uniform')
Create a CRP-based MS2 sampler. Args: n_draws: the number of draws from the CRP process min_mz: the minimum m/z value to consider min_proportion: the minimum proportion to consider max_proportion: the maximum proportion to consider alpha: CRP parameter base: base distribution for the CRP process
Source code in vimms/ChemicalSamplers.py
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 | |
sample(chemical)
Sample MS2 spectra using chemical as the parent Args: chemical: the parent chemical
Returns: a tuple of (mz_list, intensity_list, parent_proportion)
Source code in vimms/ChemicalSamplers.py
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 | |
ChromatogramSampler
Bases: ABC
Base class for chromatogram sampler.
Source code in vimms/ChemicalSamplers.py
415 416 417 418 419 420 421 422 | |
ConstantChromatogramSampler
Bases: ChromatogramSampler
A sampler to return constant chromatograms -- direct infusion
Source code in vimms/ChemicalSamplers.py
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | |
sample(formula, rt, intensity)
Sample a constant chromatogram (present everywhere) Args: formula: formula, unused rt: RT, unused intensity: intensity, unused
Returns: a [vimms.Chromatograms.ConstantChromatogram] object.
Source code in vimms/ChemicalSamplers.py
459 460 461 462 463 464 465 466 467 468 469 470 | |
DatabaseFormulaSampler
Bases: FormulaSampler
A sampler to draw formula from a database
Source code in vimms/ChemicalSamplers.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
__init__(database, min_mz=MIN_MZ, max_mz=MAX_MZ)
Initiliases database formula sampler
| Parameters: |
|
|---|
Source code in vimms/ChemicalSamplers.py
61 62 63 64 65 66 67 68 69 70 71 72 | |
sample(n_formulas)
Samples n_formulas from the specified database
| Parameters: |
|
|---|
Returns: a list of Formula objects
Source code in vimms/ChemicalSamplers.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
DefaultScanTimeSampler
Bases: ScanTimeSampler
A scan time sampler that returns some fixed values that represent the average scan times for MS1 and MS2 scans.
Source code in vimms/ChemicalSamplers.py
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 | |
__init__(scan_time_dict=None)
Initialises a default scan time sampler object.
| Parameters: |
|
|---|
Source code in vimms/ChemicalSamplers.py
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 | |
sample(current_level, next_level, current_rt)
Sample a scan duration given the MS levels of current and next scans. Args: current_level: the MS level of the current scan next_level: the MS level of the next scan current_rt: not used
Returns: a sampled scan duration value
Source code in vimms/ChemicalSamplers.py
945 946 947 948 949 950 951 952 953 954 955 956 | |
EvenMZFormulaSampler
Bases: FormulaSampler
A sampler that picks mz values evenly spaced, starting from where it left off. Useful for test cases
Source code in vimms/ChemicalSamplers.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
__init__()
Create an even m/z formula sampler
Source code in vimms/ChemicalSamplers.py
165 166 167 168 169 170 | |
sample(n_formulas)
Sample up to n_formulas from this sampler Args: n_formulas: the number of formula to return
Returns: the list of formulae having evenly spaced m/z values
Source code in vimms/ChemicalSamplers.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
ExactMatchMS2Sampler
Bases: MGFMS2Sampler
Exact match MS2 sampler allows us to have particular formulas and we have a particular spectrum for each exact formula...
TODO: not sure if this class is actually completed and fully tested.
Source code in vimms/ChemicalSamplers.py
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 | |
sample(chemical)
Sample MS2 spectra using chemical as the parent Args: chemical: the parent chemical
Returns: a tuple of (mz_list, intensity_list, parent_proportion)
Source code in vimms/ChemicalSamplers.py
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 | |
FixedMS2Sampler
Bases: MS2Sampler
Generates n_frags fragments, where each is chemical - i*10 mz
Source code in vimms/ChemicalSamplers.py
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 | |
__init__(n_frags=2)
Create a fixed MS2 sampler Args: n_frags: the number of fragment peaks to generate
Source code in vimms/ChemicalSamplers.py
600 601 602 603 604 605 606 | |
sample(chemical)
Sample MS2 spectra using chemical as the parent Args: chemical: the parent chemical
Returns: a tuple of (mz_list, intensity_list, parent_proportion)
Source code in vimms/ChemicalSamplers.py
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 | |
FormulaSampler
Bases: ABC
Base class for formula sampler
Source code in vimms/ChemicalSamplers.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
__init__(min_mz=MIN_MZ, max_mz=MAX_MZ)
Create a Formula sampler Args: min_mz: the minimum m/z value of formulae to sample from max_mz: the maximum m/z value of formulae to sample from
Source code in vimms/ChemicalSamplers.py
41 42 43 44 45 46 47 48 49 | |
GaussianChromatogramSampler
Bases: ChromatogramSampler
A sampler to return Gaussian-shaped chromatogram
Source code in vimms/ChemicalSamplers.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | |
__init__(sigma=10)
Create a Gaussian-shaped chromatogram sampler Args: sigma: parameter for the Gaussian distribution to sample from
Source code in vimms/ChemicalSamplers.py
430 431 432 433 434 435 436 437 | |
sample(formula, rt, intensity)
Sample a Gaussian-shaped chromatogram
| Parameters: |
|
|---|
Returns: a [vimms.Chromatograms.FunctionalChromatogram] object.
Source code in vimms/ChemicalSamplers.py
439 440 441 442 443 444 445 446 447 448 449 450 451 | |
MGFMS2Sampler
Bases: MS2Sampler
A sampler that generates MS2 spectra from real ones defined in some MGF file.
Source code in vimms/ChemicalSamplers.py
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 | |
__init__(mgf_file, min_proportion=0.1, max_proportion=0.8, max_peaks=0, replace=False, id_field='SPECTRUMID')
Create an MGFMS2Sampler object. Args: mgf_file: input MGF file. min_proportion: the minimum proportion to consider max_proportion: the maximum proportion to consider max_peaks: the maximum number of peaks replace: whether to sample with replacement or not id_field: the ID field in the MGF file
Source code in vimms/ChemicalSamplers.py
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 | |
sample(chemical)
Sample MS2 spectra using chemical as the parent Args: chemical: the parent chemical
Returns: a tuple of (mz_list, intensity_list, parent_proportion)
Source code in vimms/ChemicalSamplers.py
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 | |
MS2Sampler
Bases: ABC
Base class for MS2 sampler
Source code in vimms/ChemicalSamplers.py
531 532 533 534 535 536 537 538 | |
MZMLChromatogramSampler
Bases: ChromatogramSampler
A sampler to return chromatograms extracted from an existing mzML file. Useful to mimic the characteristics of actual experimental data.
Source code in vimms/ChemicalSamplers.py
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | |
__init__(mzml_file_name, roi_params=None)
Create an MZMLChromatogramSampler object. Args: mzml_file_name: the input mzML file. roi_params: parameters for ROI building, as defined in vimms.Roi.RoiBuilderParams.
Source code in vimms/ChemicalSamplers.py
479 480 481 482 483 484 485 486 487 488 489 490 491 | |
sample(formula, rt, intensity)
Sample an empirical chromatogram extracted from the mzML file Args: formula: formula, unused rt: RT, unused intensity: intensity, unused
Returns: a [vimms.Chromatograms.EmpiricalChromatogram] object.
Source code in vimms/ChemicalSamplers.py
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | |
MZMLFormulaSampler
Bases: FormulaSampler
A sampler to generate m/z values from a histogram of m/z taken from a user supplied mzML file
Source code in vimms/ChemicalSamplers.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
__init__(mzml_file_name, min_mz=MIN_MZ, max_mz=MAX_MZ, source_polarity=POSITIVE)
Create an mzML formula sampler Args: mzml_file_name: the source mzML file min_mz: the minimum m/z to consider max_mz: the maximum m/z to consider source_polarity: either POSITIVE or NEGATIVE
Source code in vimms/ChemicalSamplers.py
195 196 197 198 199 200 201 202 203 204 205 206 207 | |
sample(n_formulas)
Sample up to n_formulas from the m/z values in the mzML file Args: n_formulas: the number of formula to sample
Returns: a list of Formula objects
Source code in vimms/ChemicalSamplers.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
MZMLMS2Sampler
Bases: MS2Sampler
A sampler that sample MS2 spectra from an actual mzML file.
Source code in vimms/ChemicalSamplers.py
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 | |
__init__(mzml_file, min_n_peaks=1, min_total_intensity=1000.0, min_proportion=0.1, max_proportion=0.8, with_replacement=False)
Create an MZMLMS2Sampler object Args: mzml_file: the source mzML file min_n_peaks: the minimum number of peaks to consider for each frag. spectra min_total_intensity: the minimum total intensity min_proportion: the minimum proportion to consider max_proportion: the maximum proportion to consider with_replacement: whether to sample with replacement or not
Source code in vimms/ChemicalSamplers.py
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 | |
sample(chemical)
Sample MS2 spectra using chemical as the parent Args: chemical: the parent chemical
Returns: a tuple of (mz_list, intensity_list, parent_proportion)
Source code in vimms/ChemicalSamplers.py
878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 | |
MZMLRTandIntensitySampler
Bases: RTAndIntensitySampler
A sampler to sample RT and intensity values from an existing mzML file. Useful to mimic the characteristics of actual experimental data.
Source code in vimms/ChemicalSamplers.py
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | |
__init__(mzml_file_name, n_intensity_bins=10, min_rt=0, max_rt=1600, min_log_intensity=np.log(10000.0), max_log_intensity=np.log(10000000.0), roi_params=None)
Create an instance of MZMLRTandIntensitySampler. Args: mzml_file_name: the source mzML filename n_intensity_bins: number of bins for intensities min_rt: the minimum RT to consider max_rt: the maximum RT to consider min_log_intensity: the minimum intensity (in log) to consider max_log_intensity: the maximum intensity (in log) to consider roi_params: parameters for ROI building, as defined in vimms.Roi.RoiBuilderParams.
Source code in vimms/ChemicalSamplers.py
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 | |
sample(formula)
Sample RT and intensity value from this sampler Args: formula: the chemical formula, unused for now.
Returns: a tuple of (RT, intensity) values.
Source code in vimms/ChemicalSamplers.py
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | |
MzMLScanTimeSampler
Bases: ScanTimeSampler
A scan time sampler that obtains its values from an existing MZML file.
Source code in vimms/ChemicalSamplers.py
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 | |
__init__(mzml_file, num_bins=1)
Initialises a MZML scan time sampler object.
| Parameters: |
|
|---|
Source code in vimms/ChemicalSamplers.py
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 | |
sample(current_level, next_level, current_rt)
Sample a scan duration given the MS levels of current and next scans. Args: current_level: the MS level of the current scan next_level: the MS level of the next scan current_rt: the current retention time of the current scan
Returns: a sampled scan duration value
Source code in vimms/ChemicalSamplers.py
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 | |
PickEverythingFormulaSampler
Bases: DatabaseFormulaSampler
A sampler that returns everything in the database
Source code in vimms/ChemicalSamplers.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | |
__init__(database, min_mz=MIN_MZ, max_mz=MAX_MZ)
Initiliases a Pick-Everything formula sampler
| Parameters: |
|
|---|
Source code in vimms/ChemicalSamplers.py
130 131 132 133 134 135 136 137 138 139 140 141 | |
sample(n_formulas)
Just return everything from the database
| Parameters: |
|
|---|
Returns: all formulae from the database
Source code in vimms/ChemicalSamplers.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 | |
RTAndIntensitySampler
Bases: ABC
Base class for RT and intensity sampler. Usually used when initialising a formula object.
Source code in vimms/ChemicalSamplers.py
261 262 263 264 265 266 267 268 269 | |
ScanTimeSampler
Bases: ABC
Base class for scan time sampler
Source code in vimms/ChemicalSamplers.py
913 914 915 916 917 918 919 920 | |
UniformMS2Sampler
Bases: MS2Sampler
A sampler that generates MS2 peaks uniformly between min_mz and the mass of the formula.
Source code in vimms/ChemicalSamplers.py
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 | |
__init__(poiss_peak_mean=10, min_mz=MIN_MZ_MS2, min_proportion=0.1, max_proportion=0.8)
Initialises uniform MS2 sampler
| Parameters: |
|
|---|
Source code in vimms/ChemicalSamplers.py
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | |
sample(chemical)
Samples n_peaks of MS2 peaks uniformly between min_mz and the exact mass of the formula. The intensity is also randomly sampled between between min_proportion and max_proportion of the parent formula intensity
| Parameters: |
|
|---|
Returns: a tuple of (mz_list, intensity_list, parent_proportion)
Source code in vimms/ChemicalSamplers.py
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 | |
UniformMZFormulaSampler
Bases: FormulaSampler
A sampler to generate formula uniformly between min_mz to max_mz, so just mz rather then formulas. Resulting in UnknownChemical objects instead of known_chemical ones.
Source code in vimms/ChemicalSamplers.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | |
sample(n_formulas)
Samples n_formulas uniformly between min_mz and max_mz
| Parameters: |
|
|---|
Returns: a list of Formula objects
Source code in vimms/ChemicalSamplers.py
111 112 113 114 115 116 117 118 119 120 121 122 | |
UniformRTAndIntensitySampler
Bases: RTAndIntensitySampler
A sampler to sample RT and log intensity uniformly. See class def for min and max log intensity. Returns actual intensity, but samples in log space.
Source code in vimms/ChemicalSamplers.py
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | |
__init__(min_rt=0, max_rt=1600, min_log_intensity=np.log(10000.0), max_log_intensity=np.log(10000000.0))
Initialises uniform RT and intensity sampler
| Parameters: |
|
|---|
Source code in vimms/ChemicalSamplers.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | |
sample(formula)
Samples RT and log intensity uniformly between (min_rt, max_rt) and (min_log_intensity, max_log_intensity)
| Parameters: |
|
|---|
Returns: a tuple of (RT, intensity)
Source code in vimms/ChemicalSamplers.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | |