如果加标增加浓度不是固定的,则需要将其输入 CDS。例如,您可以为其创建化合物自定义字段。
在控制面板中,为项目添加化合物自定义参数。然后,在采集序列表或 Data Analysis 进样列表中定义化合物自定义参数的值。
范围:“峰或组”
类型:“Double”
公式:
IF(Sample_Name like "Pair*", (AllMatchingPeaksAndGroups( MatchOption.Compound, CurrentSequence.AllInjectionsBySampleName(Sample_Name)).Last().Compound_Amount - AllMatchingPeaksAndGroups( MatchOption.Compound, CurrentSequence.AllInjectionsBySampleName( Sample_Name)).First().Compound_Amount)/ CurrentPeakOrGroup.GetCustomField("SpikedAmount")*100, "")
公式部分(高亮显示) |
说明 |
---|---|
IF(Sample_Name like "Pair*", (AllMatchingPeaksAndGroups(MatchOption.Compound, CurrentSequence.AllInjectionsBySampleName( Sample_Name)).Last().Compound_Amount - AllMatchingPeaksAndGroups( MatchOption.Compound, CurrentSequence.AllInjectionsBySampleName( Sample_Name)).First().Compound_Amount) / CurrentPeakOrGroup.GetCustomField("SpikedAmount")*100, "") | 返回当前化合物的加标含量值。 |