R/weight.R

Defines functions weight

Documented in weight

#'Weights for Ensemble Gene Regulatory Network Inference
#'@param path path to file name
#'
#'@return a \code{tibble}
#'@export
#'@importFrom readr read_csv
#'@author Chiranjib Sarkar(cschiranjib9@gmail.com)
#'@references Sarkar, C., Parsad, R., Mishra, D.C. and Rai, A (2020). An ensemble approach for gene regulatory network study in rice blast. Journal of Crop and Weed , 16 , 1-8.
#@examples
#csv=system.file("inst","inst/weight.csv",package = "EGRNi")
#weight(csv)

weight<-function(path){
  readr::read_csv(path)
}

Try the EGRNi package in your browser

Any scripts or data that you put into this service are public.

EGRNi documentation built on Nov. 18, 2022, 5:12 p.m.