Reppo for internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
340 B

  1. tab2md<-function(table){
  2. samples_csv<-table
  3. table<-apply(table, 1, paste, collapse="|")
  4. table<-gsub("^","|",table)
  5. table<-gsub("$","|",table)
  6. table<-c(paste0("|",paste(colnames(samples_csv), collapse="|"),"|"),
  7. paste0("|",paste(rep("---",ncol(samples_csv)), collapse="|"),"|"),
  8. table)
  9. cat(table, sep="\n")
  10. }