Skip to content
View tisimpson's full-sized avatar

Highlights

  • Pro

Organizations

@biomedicalinformaticsgroup

Block or report tisimpson

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. bioinformatics1 bioinformatics1 Public

    Code for the Bioinformatics 1 Course - School of Informatics, The University of Edinburgh

    Jupyter Notebook 16 11

  2. A small script to find the official ... A small script to find the official HGNC gene identifier and Entrez GeneID for a query gene symbol and species in the NCBI Gene database
    1
    from biopython import Entrez
    2
    
                  
    3
    def findGene(gene_name,species_name):
    4
        search_string = gene_name+"[Gene] AND "+species_name+"[Organism]"
    5
        handle = Entrez.esearch(db="gene", term=search_string)