Skip to content
View KarenGoncalves's full-sized avatar
😄
😄
Block or Report

Block or report KarenGoncalves

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

    This is an R package designed to select genes with low levels of variability in expression using read counts and gene sizes.

    R 1

  2. Dos_Santos_2020b Dos_Santos_2020b Public

    Data underlying main and supplementary figures from the paper "Differential alteration of plant functions by homologous fungal candidate effectors"

  3. R_class_examples R_class_examples Public

    Datasets and scripts for R Class

    R

  4. Amaryllidaceae_database Amaryllidaceae_database Public

    Explanation on how to use the command line and the Amaryllidaceae blast database

    1

  5. Install r packages from CRAN, biocon... Install r packages from CRAN, bioconductor and github and load them all with a single function.
    1
    install_cran <- function(cran_packages) {
    2
    	pkgs.To.Install = which(! cran_packages %in% installed.packages())
    3
    	if (length(pkgs.To.Install) != 0) {
    4
    		install.packages(cran_packages[pkgs.To.Install])
    5
    	}