Skip to contents

Write a table or data.frame in defined output file

Usage

writeResults(
  data,
  toolName = "toolDE_x",
  sepCharacter = "\t",
  pathOutput = "."
)

Arguments

data

table or data.frame dataset

toolName

text with file name

sepCharacter

character to separe data columns

pathOutput

path to write output, need be a directory (default: ".")

Value

void

Examples

df <- data.frame(col1 = c("treat1", "treat2", "treat3"), col2 = c(1, 2, 3))
writeResults(data = df, toolName = "test")