Skip to content
View adamsardar's full-sized avatar

Organizations

@Scriven
Block or Report

Block or report adamsardar

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

  1. stoneTrees stoneTrees Public

    Integrating 'omics data with biological networks by solving Steiner Tree problems

    R 3 3

  2. metaDEGth metaDEGth Public

    metaDEGth: meta-analysis of Differentially Expressed Genes using parametric, empirically-derived P-value distributions

    R 1

  3. RcppORtools RcppORtools Public

    Rcpp integration for google's ORtools

    C++

  4. currentFlowCentrality currentFlowCentrality Public

    A generalisation of network closeness and betweeness to all paths rather than just geodesics

    R

  5. My standard Rprofile My standard Rprofile
    1
    #Including arch is useful for times that one might be running two versions of R on different architectures. e.g. on new M1 Macs
    2
    libDirectory <- paste(c("~/Rlibs/", R.Version()$minor, "/", R.Version()$arch, "/"),collapse="")
    3
    .libPaths(libDirectory)
    4
    
                  
    5
    #Taken from bioconductor. This removes the need for using biocLite to install packages, which would be at the top of my list of "Bad Things About R"
  6. .tmux.conf .tmux.conf
    1
    #Set command prefix to be like screen
    2
    set -g prefix C-a
    3
    unbind C-b
    4
    bind C-a send-prefix
    5