Skip to main content

Primer 3 Implementation for plugin

Comments

5 comments

  • Richard Moir

    Check out this previous post: https://help.geneious.com/hc/en-us/community/posts/360068914912-API-access-to-primer3-calculations

    0
  • Pedro Fernandez

    Hey Richard, thank you for your reply! I had seen that post, but I'm struggling to see where I could input the buffer composition for the sake of the Tm calculation with primer3. my plugin is for a method that utilizes a specific buffer so I want to ensure the melting temperature is calculated with the right concentrations of di and monovalent salts, DTT etc... would you be able to direct me to some documentation where I could find that? 

    0
  • Richard Moir

    The setValue method can be used like this:

    annealingCharacteristicOptions.setValue("saltConcentrationOptions.dntpConcentration", 99);

    To see a complete list of available options call annealingCharacteristicOptions.toString()

    0
  • Pedro Fernandez

    Hey Richard, Thanks again for the response. I'm having a hard time getting the annealingCharacteristicOptions.toString() to to work. its not showing the method at all, when I go into the com.biomatters.plugins.primerDesign folder within the geneious files there is no src code there or any way to look at the documentation.
    because of this its not allowing me to look at the list of options for it. when I go into the primer3 documentation it shows different names for the values. 
    would I be able to find the documentation for the primer3 plugin implementation for this? 

    thanks

    0
  • Richard Moir

    Hi Pedro, to see the values you'll have to do inspect the return value of annealingCharacteristicOptions.toString() at runtime. The easiest way would be:

    System.out.println(annealingCharacteristicOptions.toString());

    Unfortunately we don't have any documentation for the plugin.

    0

Please sign in to leave a comment.