50% off | Unlimited Data & AI Learning
Get 50% off unlimited learning

drugsens (version 0.1.0)

generate_qupath_script: Generate the groovy script used for the analysis

Description

Generate a useful script to consistently save the output data from QuPath in .csv format following the naming conventions followed during the package development.

Usage

generate_qupath_script(output_dir = NULL)

Value

Invisibly returns the path to the generated script file.

Arguments

output_dir

Directory where the script should be saved. If NULL, uses tempdir()

Examples

Run this code
if (FALSE) {
  # Generate script in a temporary directory
  generate_qupath_script()

  # Generate script in a specific directory
  output_dir <- tempdir()
  generate_qupath_script(output_dir = output_dir)
}

Run the code above in your browser using DataLab