MassHunter on Ultivo QQQ - Quant Reporting for all compounds (even if not detected or zeroed)?

How can I get all my compounds being reported for all samples in a batch even if a compound was not detected or zeroed?

All reports (batch, not sample) I tried leave out those compounds but I need them for our LIMS-transfer.

Can I make those compounds appear in the report or will only positive hits be reported?

Parents
  • Hi Stemmerichk - can you tell us which reporting template you are using to write your LIMS? And did you modify it from the shipping report? If so - can you post it here so we can take a look?

     

    The report template controls everything about what is included in the report - so it will need to be modified to stop filtering out non-detect an zeroed compounds. 

  • Hello Hexatriene, thanks for your help!

     

    I pretty much tried all templates with ISTD and without graphics, and all filtered some (but the same) samples out.

    My plan was to use one of the official templates and then modify that for the LIMS-transfer. As I am just getting into modyfing the reports, I did not change anything up to now.

     

    I suppose it would help if the nondetected or zeroes compound would get some "ND" remark as a result?

    What part of the template is responsible for filtering the results?

    I thought the problem was in the results table, because not detected compounds are just blank in the calculated concentration and do not get something like "ND" or something similar.

  • Hi Stemmerichk,

     

    I've attached a copy of a PDF-ReportBuilder template which will generate a .CSV file suitable for a LIMS system. PDF-ReportBuilder is the preferred reporting engine for most customers because it has a very simple system for making edits - namely using the Report Builder tool which ships with Quant B.08 and greater. This template was designed for Quant 10. But the changes I've made can be applied just the same to B.08 and B.09.

     

    The first change one needs to make is to apply a Left outer join to the 'TargetCompound' binding in the compound results table. This will let us generate results even if the compound is not found. 

     

     

    Next - we need to apply another Left outer join to the Qualifier data so we can get results even when the qualifier peak is not found:

     

     

    Finally - we need to replace the value for the CalculatedConcentration with an expression that replaces the concentration field with ND when needed:

     

     

    And here is the text of that expression:

    import System
    import clr
    clr.AddReference("System.Drawing")
    import System.Drawing

    if BoundItems["TargetCompound"].IsCalibrationReferenceCompoundIDNull():
    TemplateItems["Cell"].BackgroundColor = System.Drawing.Color.White
    else:
    TemplateItems["Cell"].BackgroundColor = System.Drawing.Color.LightGray

    "ND" if BoundItems["TargetPeak"] is None or BoundItems["TargetPeak"].IsFinalConcentrationNull() else BoundItems["TargetPeak"].CalculatedConcentration
    Gen_LIMs_AllCompounds.template.xml.zip
  • Hi hexatriene,

     

    again thank you very much for helping me!

    Could you send me the template or tell me which one you used to modify so I can try that?

     

    btw: You mentioned advantages for the pdf reports, is there some tutorial, guide or manual for the pdf report builder tool, I would have tried to modify the excel-templates via the excel-plugin until now...I think I should instead take a deeper look into the pdf report builder tool.

  • Hi stemmerichk,

     

    Sorry - it's hard to see but I attached the template to my last post. If you look at the bottom you'll find the attachments section which has a link to the report template.

     

    Regarding the PDF Report Builder - yes, we have a familiarization guide and some videos that walk you through some basic modifications - all included on the Quant 10 disk and the supplemental "Resource App" disk. Do you have the Quant 10 media (USB thumb drive or downloaded .UFD)? You can re-download Quant 10 if you've registered the product on Agilent.SubscribeNet.com. 

     

    I'd recommend starting with the Report Builder videos in the Supplemental folder. Open the 'Outline.htm' to see an index of the videos at this location on the Quant disk: \Supplemental\MassHunter\Videos\Quant.

Reply
  • Hi stemmerichk,

     

    Sorry - it's hard to see but I attached the template to my last post. If you look at the bottom you'll find the attachments section which has a link to the report template.

     

    Regarding the PDF Report Builder - yes, we have a familiarization guide and some videos that walk you through some basic modifications - all included on the Quant 10 disk and the supplemental "Resource App" disk. Do you have the Quant 10 media (USB thumb drive or downloaded .UFD)? You can re-download Quant 10 if you've registered the product on Agilent.SubscribeNet.com. 

     

    I'd recommend starting with the Report Builder videos in the Supplemental folder. Open the 'Outline.htm' to see an index of the videos at this location on the Quant disk: \Supplemental\MassHunter\Videos\Quant.

Children
Was this helpful?