Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
+ addresses issue #181 (h/t @pkerbs)
  • Loading branch information
warrenmcg committed Jun 7, 2018
1 parent e84554f commit 8bb7aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/sleuth.R
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ check_target_mapping <- function(t_id, target_mapping, gene_mode) {
if(any(duplicated(target_mapping$target_id))) {
indices <- which(duplicated(target_mapping$target_id))
duplicated_ids <- target_mapping$target_id[indices]
formatted_ids <- paste(dupliated_ids, collapse = ", ")
formatted_ids <- paste(duplicated_ids, collapse = ", ")
if(gene_mode) {
stop("There is at least one duplicated target ID in the target mapping. ",
"Since sleuth prep is in gene aggregation mode, any duplicated ",
Expand Down

0 comments on commit 8bb7aa0

Please sign in to comment.