Last modified 11 months ago Last modified on 17/06/11 13:35:53

Links

This page aims to describe the various ways to link to a Mine.

link directly to Mine

destinationmethodexample linknotes
resultstemplate* exampleLinks to results of specified template. URL available on template form in webapp.
query XML exampleLinks to results of query. Can run any query built by QueryBuilder; QueryBuilder generates the XML.
list analysistemplate results* exampleLinks to list analysis page comprised of results of template query. "path" attribute determines which column used to create list. URL available on template form in webapp.
list of identifiers exampleLinks to list analysis page for specified objects. For a very long list, use a form instead of a link. Can use any identifiers.
report pageidentifier exampleLinks directly to report page. URL available on report page in webapp.
report page OR list analysisorthologues exampleThe example URL contains D. melanogaster genes. The results will contain the corresponding C. elegans genes, if any. This will only work if you have orthologue data loaded into your Mine.
convert to different type exampleWhen linking to a report page or a list analysis page you can convert the data type, for instance if you provide a Protein identifier and want to link to the corresponding Gene, you need to specify the class as Gene. Will only work if you have a converter template available

Download data directly using the InterMine WebService

embed data in web-pages using the JavaScriptClient *

Example:

<div id="some-placeholder"></div>
<script type="text/javascript">
    IMBedding.setBaseUrl("http://www.flymine.org/query");
    IMBedding.loadTemplate(
        {
            name:           "Gene_RegionOverlappingTFbindingsite",

            constraint1:    "Gene",
            op1:            "LOOKUP",
            value1:         "CG2328",
            code1:          "A",
        },            
        '#some-placeholder',
    );
</script>

See:  http://blog.flymine.org/link-to-flymine/ for more information on how to link into a Mine.

  • new to InterMine 0.96