Skip to content

Commit

Permalink
Merge branch 'develop' into greedyscheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
Maarten-vd-Sande authored Jul 28, 2023
2 parents a8f0dbb + 3b29aa4 commit c7765c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seq2science/scripts/deseq2/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ parse_contrast <- function(contrast) {
#' collapse technical replicates (if present) and
#' convert to descriptive names (if present).
parse_samples <- function(samples_file, assembly_name, replicates) {
samples <- read.delim(samples_file, sep = "\t", na.strings = "", comment.char = "#", stringsAsFactors = F, row.names = "sample", check.names = F)
samples <- read.delim(samples_file, sep = "\t", na.strings = "", comment.char = "#", stringsAsFactors = F, row.names = "sample", check.names = F, colClasses="character")
colnames(samples) <- gsub("\\s+", "", colnames(samples)) # strip whitespace from column names

# custom assemblies have a suffix not present in the samples.tsv
Expand Down

0 comments on commit c7765c0

Please sign in to comment.