Documentation for ChemicalSamplers.py
¶
ChemicalSamplers
¶
Sampling classes for ChemicalMixtureCreator
CRPMS2Sampler
¶
CRPMS2Sampler(
n_draws=1000,
min_mz=MIN_MZ_MS2,
min_proportion=0.1,
max_proportion=0.8,
alpha=1,
base="uniform",
)
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.
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
¶
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.
ConstantChromatogramSampler
¶
Bases: ChromatogramSampler
A sampler to return constant chromatograms -- direct infusion
sample
¶
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
¶
DatabaseFormulaSampler(database, min_mz=MIN_MZ, max_mz=MAX_MZ)
Bases: FormulaSampler
A sampler to draw formula from a database
Initiliases database formula sampler
Parameters:
Name | Type | Description | Default |
---|---|---|---|
database
|
a list of Formula objects containing chemical formulae from e.g. HMDB |
required | |
min_mz
|
the minimum m/z value of formulae to sample from |
MIN_MZ
|
|
max_mz
|
the maximum m/z value of formulae to sample from |
MAX_MZ
|
Source code in vimms/ChemicalSamplers.py
61 62 63 64 65 66 67 68 69 70 71 72 |
|
sample
¶
sample(n_formulas)
Samples n_formulas from the specified database
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_formulas
|
the number of formula to draw |
required |
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
¶
DefaultScanTimeSampler(scan_time_dict=None)
Bases: ScanTimeSampler
A scan time sampler that returns some fixed values that represent the average scan times for MS1 and MS2 scans.
Initialises a default scan time sampler object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
scan_time_dict
|
A dictionary of scan times for each MS-level. It should look like this: {1: 0.4, 2: 0.2}. If not specified, then the default value is used. Note that this default is obtained from our Orbitrap instrument and would certainly differ from yours! |
None
|
Source code in vimms/ChemicalSamplers.py
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 |
|
sample
¶
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
¶
EvenMZFormulaSampler()
Bases: FormulaSampler
A sampler that picks mz values evenly spaced, starting from where it left off. Useful for test cases
Create an even m/z formula sampler
Source code in vimms/ChemicalSamplers.py
165 166 167 168 169 170 |
|
sample
¶
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
¶
ExactMatchMS2Sampler(
mgf_file, min_proportion=0.1, max_proportion=0.8, id_field="SPECTRUMID"
)
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
794 795 796 797 798 799 800 |
|
sample
¶
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
¶
FixedMS2Sampler(n_frags=2)
Bases: MS2Sampler
Generates n_frags fragments, where each is chemical - i*10 mz
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
¶
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
¶
FormulaSampler(min_mz=MIN_MZ, max_mz=MAX_MZ)
Bases: ABC
Base class for formula sampler
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
¶
GaussianChromatogramSampler(sigma=10)
Bases: ChromatogramSampler
A sampler to return Gaussian-shaped chromatogram
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
¶
sample(formula, rt, intensity)
Sample a Gaussian-shaped chromatogram
Parameters:
Name | Type | Description | Default |
---|---|---|---|
formula
|
the formula to condition on (can be ignored) |
required | |
rt
|
RT to condition on (can be ignored) |
required | |
intensity
|
intensity to condition on (can be ignored) |
required |
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
¶
MGFMS2Sampler(
mgf_file,
min_proportion=0.1,
max_proportion=0.8,
max_peaks=0,
replace=False,
id_field="SPECTRUMID",
)
Bases: MS2Sampler
A sampler that generates MS2 spectra from real ones defined in some MGF file.
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
¶
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
MZMLChromatogramSampler
¶
MZMLChromatogramSampler(mzml_file_name, roi_params=None)
Bases: ChromatogramSampler
A sampler to return chromatograms extracted from an existing mzML file. Useful to mimic the characteristics of actual experimental data.
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
¶
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
¶
MZMLFormulaSampler(
mzml_file_name, min_mz=MIN_MZ, max_mz=MAX_MZ, source_polarity=POSITIVE
)
Bases: FormulaSampler
A sampler to generate m/z values from a histogram of m/z taken from a user supplied mzML file
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
¶
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
¶
MZMLMS2Sampler(
mzml_file,
min_n_peaks=1,
min_total_intensity=1000.0,
min_proportion=0.1,
max_proportion=0.8,
with_replacement=False,
)
Bases: MS2Sampler
A sampler that sample MS2 spectra from an actual mzML file.
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
¶
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
¶
MZMLRTandIntensitySampler(
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,
)
Bases: RTAndIntensitySampler
A sampler to sample RT and intensity values from an existing mzML file. Useful to mimic the characteristics of actual experimental data.
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
¶
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
¶
MzMLScanTimeSampler(mzml_file, num_bins=1)
Bases: ScanTimeSampler
A scan time sampler that obtains its values from an existing MZML file.
Initialises a MZML scan time sampler object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
num_bins
|
the number of bins to sample scan durations from |
1
|
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
¶
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
¶
PickEverythingFormulaSampler(database, min_mz=MIN_MZ, max_mz=MAX_MZ)
Bases: DatabaseFormulaSampler
A sampler that returns everything in the database
Initiliases a Pick-Everything formula sampler
Parameters:
Name | Type | Description | Default |
---|---|---|---|
database
|
a list of Formula objects containing chemical formulae from e.g. HMDB |
required | |
min_mz
|
the minimum m/z value of formulae to sample from |
MIN_MZ
|
|
max_mz
|
the maximum m/z value of formulae to sample from |
MAX_MZ
|
Source code in vimms/ChemicalSamplers.py
130 131 132 133 134 135 136 137 138 139 140 141 |
|
sample
¶
sample(n_formulas)
Just return everything from the database
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_formulas
|
ignored? |
required |
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.
ScanTimeSampler
¶
Bases: ABC
Base class for scan time sampler
UniformMS2Sampler
¶
UniformMS2Sampler(
poiss_peak_mean=10,
min_mz=MIN_MZ_MS2,
min_proportion=0.1,
max_proportion=0.8,
)
Bases: MS2Sampler
A sampler that generates MS2 peaks uniformly between min_mz and the mass of the formula.
Initialises uniform MS2 sampler
Parameters:
Name | Type | Description | Default |
---|---|---|---|
poiss_peak_mean
|
the mean of the Poisson distribution used to draw the number of peaks |
10
|
|
min_mz
|
minimum m/z value |
MIN_MZ_MS2
|
|
min_proportion
|
minimum proportion from the parent MS1 peak intensities |
0.1
|
|
max_proportion
|
maximum proportion from the parent MS1 peak intensities |
0.8
|
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
¶
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:
Name | Type | Description | Default |
---|---|---|---|
chemical
|
the chemical to compute max m/z value from |
required |
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
¶
UniformMZFormulaSampler(min_mz=MIN_MZ, max_mz=MAX_MZ)
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
41 42 43 44 45 46 47 48 49 |
|
sample
¶
sample(n_formulas)
Samples n_formulas uniformly between min_mz and max_mz
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_formulas
|
the number of formula to draw |
required |
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
¶
UniformRTAndIntensitySampler(
min_rt=0,
max_rt=1600,
min_log_intensity=np.log(10000.0),
max_log_intensity=np.log(10000000.0),
)
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.
Initialises uniform RT and intensity sampler
Parameters:
Name | Type | Description | Default |
---|---|---|---|
min_rt
|
minimum RT |
0
|
|
max_rt
|
maximum RT |
1600
|
|
min_log_intensity
|
minimum log intensity |
log(10000.0)
|
|
max_log_intensity
|
maximum log intensity |
log(10000000.0)
|
Source code in vimms/ChemicalSamplers.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
|
sample
¶
sample(formula)
Samples RT and log intensity uniformly between (min_rt, max_rt) and (min_log_intensity, max_log_intensity)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
formula
|
the formula to condition on (can be ignored) |
required |
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 |
|