Skip to content
View anykine's full-sized avatar

Highlights

  • Pro

Block or report anykine

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. DuchenneConnect2016 DuchenneConnect2016 Public

    Analysis of Duchenne Registry data

    R

  2. rnaseq_tools rnaseq_tools Public

    generate RNA-seq scripts on SGE cluster

    Python

  3. omim omim Public

    Python 1 1

  4. GO analysis using DAVID from R GO analysis using DAVID from R
    1
    ## DAVID GO using WebServices
    2
    library(RDAVIDWebService)
    3
    #data("demoList1")
    4
    # use the new URL
    5
    david <- DAVIDWebService(email='my@email.here',
  5. Getting gene names for all Ensembl t... Getting gene names for all Ensembl transcript IDs using biomaRt
    1
    library(biomaRt)
    2
    # Use the west coast mirror
    3
    mart = biomaRt::useMart(biomart='ENSEMBL_MART_ENSEMBL', 
    4
      dataset='mmusculus_gene_ensembl', host='uswest.ensembl.org')
    5
      
  6. rotating x-axis labels in ggplot rotating x-axis labels in ggplot
    1
    # rotate the axis label perpendicular to x-axis
    2
    p <- ggplot( ... ) 
    3
    p + theme(axis.text.x = element_text(angle=-90, size=10)