This very short tutorial will talk about how you can access your saved templates and lists if you have your login information (username and password). If you don't have an account, you can create one at http://www.flymine.org/
Once, you have made an account, you can use the web service to create a query of your choice and save it as a template. This template can be used through the Python API or through the web service.
To login and access your templates through Python, you can provide your login information as shown below. Note that the code shown below is in comments because it needs to be specific to your account. Change the username and password to match yours, uncomment the code, and then run it.
from intermine.webservice import Service
from intermine import query
service=Service("www.flymine.org/flymine/service",username="Enter username",password="Enter password")
#template=service.get_template("Name of a saved template")
You can then play around with this saved template like any of the existing templates on Flymine.
To view the names of all the available templates you can view the templates dictionary and iterate through it. This can be done as follows.
service = Service("www.flymine.org/flymine/service")
templates=service.templates
for name in templates.keys():
print(name)
Gene_upstreamRegulatoryRegions Gene_RNAi Gene_Pathway GOTerm_Gene2 Gene_FlyAtlas_TissueList AnatomyTerm_Region Chromosome_GeneInsertionLocation All_Genes_In_Organism_To_Publications FlyRegBindingSite_TranscriptionFactor RNAiScreen_genes Protein_GOterms_1 ChromLocation_TFBindingSiteLocationGeneFactor Protein_GeneChromosomeLength modENCODE_RNA_seq_Tissues Dataset_TF_BindingSites Gene_TimeCourseExpression TimeCourseData_Gene organism_allmiRNA GO_GeneOrthologues RNA_seq_Genes Tissue_Flyatlas Chromosome_CRMOverlappingInsertion protein_domains2 Pathway_GenesOrthol_new2 ChromLocation_CRM Gene_Interactions2 Gene_PointMutationLocation Gene_Insertion Gene_Protein Gene_AdjacentGene_FlyAtlas_upstream DrosDel_GeneLocation ChromLocation_Gene Gene_TranscriptExonLocation GO_Gene Disease_gene2 Gene_AlleleStocks ECnumber_gene_protein Gene_pathway_interactions Gene_Probe GeneTissue_FlyAtlas Gene_transposableElementsOverlappingExons ChromLocation_GeneTranscriptINDAC protein_domain organismGenes_GOterms InterPro_Domain_Family miRNAtargetGene_miRNAgene Gene_INDAC Organism_NaturalTransposableElements Publication_Genes Gene_GO NaturalTransposableElement_InsertedElements Genes_Publications Organism_NaturalTransposableElementsandSites Gene_IntronChromosome Gene_disease Organism_Protein Gene_agLifecycleExpression Gene_TranscriptOrthologue Organism_GOtermsOrthologues Organism_transposableElementInsertionSites Disease_gene_orthologue OrganismGO_GenePointMutation TranscriptionFactor_Genes Transcriptionfactor_TFBindingSiteGene Gene_FlyFish Gene_ExonLocation2 Gene_FlyAtlas protein_interactions GOterm_gene_report Gene_1CDSsequence Transcript_INDAC Stage_FlyFishBDGP Gene_OverlapppingGenes miRNA_Targets Gene_AdjacentGene_FlyAtlas_downstream Gene_transcriptionFactors Organism_3UTR Protein_Publication ChromLocation_RegulatoryRegion ProbeSet_FlyAtlas Gene_proteindomain Gene_Publications Gene_BDGP ChromLocation_CRMOverlappingTFBindingsite INDAC_GeneLocation ListPathway Intergenic_RegRegion Gene_RegionLocation MeSH_Publication GotermGene2genes Gene_CDSs Gene_Location Gene_AdjacentGenes Organism_Intergenic Protein_PublicationAll Gene_RegulatoryRegion GOterm_GenesInsertions ChromLocation_GeneTranscriptExon BDGP_Gene organism_allGenes FlyFish_Genes AllGene_Chromosome Gene_Orth_seq PointMutation_Gene_Chromosome Gene_AdjacentGenesLocations Organism_5UTR Chromosome_IntergenicSequence Gene_RNA_seq Gene_DrosophilaOrthologues Gene_Alleles Mutagen_Allele Chromosome_Gene geneInteractiongene AlleleClass_Allele Gene_FlyAtlasGO GOterm_genesDrosDelDeletion Pathway_Genes Gene_BDGPFlyFish AnatomyTerm_Alleles Gene_GOAll Probe_Gene Clone_gene Gene_Orth
This dictionary contains all the information about all the available templates, including the exact name and description. If you now want to view the details about a particular template name, this can be done as shown below.
templates["Gene_RNAi"]
'<template comment="" name="Gene_RNAi" title="Gene --> RNAi phenotypes"><query longDescription="Show RNAi phenotypes for a specified gene or genes." model="genomic" name="Gene_RNAi" sortOrder="Gene.primaryIdentifier asc" view="Gene.primaryIdentifier Gene.symbol Gene.rnaiResults.phenotype Gene.rnaiResults.score Gene.rnaiResults.rnaiScreen.scoreType Gene.rnaiResults.reagentId Gene.rnaiResults.conditions Gene.rnaiResults.rnaiScreen.publication.pubMedId Gene.rnaiResults.rnaiScreen.name Gene.rnaiResults.rnaiScreen.assay Gene.rnaiResults.rnaiScreen.bioSourceName Gene.rnaiResults.rnaiScreen.bioSourceType Gene.rnaiResults.rnaiScreen.method"><constraint description="Show RNAi phenotypes for the following gene:" editable="true" extraValue="D. melanogaster" op="LOOKUP" path="Gene" value="eve"/></query></template>'
If you don't feel comfortable with viewing this dictionary, you can also view the templates on: http://beta.flymine.org/beta/templates.do and www.flymine.org/flymine/templates.do You can scroll through the list of templates. If you find an interesting template, click on the template and click on the Python tab (in blue). This would show you how to call the template in Python using the exact name.