Skip to content
Snippets Groups Projects
Commit ebb1d88a authored by flalom's avatar flalom
Browse files

Fix typos

parents f7288b24 c787b892
No related branches found
No related tags found
No related merge requests found
...@@ -108,7 +108,8 @@ get_QC_plots_parsed_merged_data <- function(.data, ...@@ -108,7 +108,8 @@ get_QC_plots_parsed_merged_data <- function(.data,
if (save_plots) { if (save_plots) {
if (save_plots_in_patient_specific_subfolders) { if (save_plots_in_patient_specific_subfolders) {
if (!dir.exists(paste0(saving_plots_folder, "/", pid))) dir.create(paste0(saving_plots_folder, "/", pid))
if (!dir.exists(paste0(saving_plots_folder, "/", pid))) dir.create(paste0(saving_plots_folder, "/", pid), showWarnings = F, recursive = T)
ggsave( ggsave(
plot = p, plot = p,
filename = paste0( filename = paste0(
...@@ -128,7 +129,7 @@ get_QC_plots_parsed_merged_data <- function(.data, ...@@ -128,7 +129,7 @@ get_QC_plots_parsed_merged_data <- function(.data,
) )
} else { } else {
# Saving plots in .pdf at 600 dpi # Saving plots in .pdf at 600 dpi
if (!dir.exists(saving_plots_folder)) dir.create(saving_plots_folder) if (!dir.exists(saving_plots_folder)) dir.create(saving_plots_folder, showWarnings = F, recursive = T)
ggsave( ggsave(
plot = p, plot = p,
width = p_width, width = p_width,
......
![](https://img.shields.io/badge/R-%3E%3D%204.0.0-blue) ![](https://img.shields.io/badge/R-%3E%3D%204.0.0-blue)
# Overview # Overview
DRUGSENS is a R-package tha allow users to automatically analyze QuPath&trade; output data from imaging analysis.
DRUGSENS is a R-package that allows users to automatically analyze QuPath&trade's output data from imaging analysis.
Here we include a QuPath&trade; script to run reproducible QuPath&trade;-based image analysis, and some examples on how DRUGSENS can be used. For more detailed examples of QuPath&trade; scripting please refer to [QuPath&trade;'s Documentation](https://qupath.readthedocs.io/en/stable/). Here we include a QuPath&trade; script to run reproducible QuPath&trade;-based image analysis, and some examples on how DRUGSENS can be used. For more detailed examples of QuPath&trade; scripting please refer to [QuPath&trade;'s Documentation](https://qupath.readthedocs.io/en/stable/).
This script should be placed into scripts within QuPath&trade;. We tested this code to a previous version of QuPath&trade. This script should be placed into scripts within QuPath&trade;. We tested this code to a previous version of QuPath&trade.
This packge is complementary to the STAR protocol: `...` This packge is complementary to the STAR protocol: `...`
...@@ -9,9 +11,11 @@ This packge is complementary to the STAR protocol: `...` ...@@ -9,9 +11,11 @@ This packge is complementary to the STAR protocol: `...`
# Installation # Installation
``` r ``` r
devtools::install_gitlab("https://git.scicore.unibas.ch/ovca-research/drugsens") devtools::install_git("https://git.scicore.unibas.ch/ovca-research/drugsens")
# OR # OR
devtools::install_github("https://github.com/flalom/drugsens") # this is the mirroring repo of the gitlab
devtools::install_github("https://github.com/flalom/drugsens") # this is the GitLab's mirroring repo
``` ```
`devtools` is required to install DRUGSENS. If `devtools` is not installed yet you can install it with: `devtools` is required to install DRUGSENS. If `devtools` is not installed yet you can install it with:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment