@tests: MSQuantifications MSQuantifications.__eq__ MSQuantifications.__ge__ MSQuantifications.__gt__ MSQuantifications.__init__ MSQuantifications.__le__ MSQuantifications.__lt__ MSQuantifications.__ne__ MSQuantifications.getConsensusMaps MSQuantifica
()
| 2926 | |
| 2927 | @report |
| 2928 | def testMSQuantifications(): |
| 2929 | """ |
| 2930 | @tests: MSQuantifications |
| 2931 | MSQuantifications.__eq__ |
| 2932 | MSQuantifications.__ge__ |
| 2933 | MSQuantifications.__gt__ |
| 2934 | MSQuantifications.__init__ |
| 2935 | MSQuantifications.__le__ |
| 2936 | MSQuantifications.__lt__ |
| 2937 | MSQuantifications.__ne__ |
| 2938 | MSQuantifications.getConsensusMaps |
| 2939 | MSQuantifications.setConsensusMaps |
| 2940 | MSQuantifications.setDataProcessing |
| 2941 | MSQuantifications.getDataProcessing |
| 2942 | MSQuantifications.getAssays |
| 2943 | MSQuantifications.getFeatureMaps |
| 2944 | MSQuantifications.setAnalysisSummaryQuantType |
| 2945 | MSQuantifications.getAnalysisSummary |
| 2946 | MSQuantifications.addConsensusMap |
| 2947 | MSQuantifications.assignUIDs |
| 2948 | """ |
| 2949 | msq = pyopenms.MSQuantifications() |
| 2950 | assert msq == msq |
| 2951 | assert not msq != msq |
| 2952 | msq.setConsensusMaps(msq.getConsensusMaps()) |
| 2953 | |
| 2954 | summary = msq.getAnalysisSummary() |
| 2955 | msq.setDataProcessingList(msq.getDataProcessingList()) |
| 2956 | msq.getAssays() |
| 2957 | msq.getFeatureMaps() |
| 2958 | msq.setAnalysisSummaryQuantType(pyopenms.MSQuantifications.QUANT_TYPES.LABELFREE) |
| 2959 | |
| 2960 | msq.addConsensusMap(pyopenms.ConsensusMap()) |
| 2961 | msq.assignUIDs() |
| 2962 | |
| 2963 | @report |
| 2964 | def testMSSpectrum(): |
nothing calls this directly
no test coverage detected