Skip to content

Commit

Permalink
Update visualizations.R
Browse files Browse the repository at this point in the history
fix issue with row names from scaffold file.
  • Loading branch information
tem11010 authored Aug 28, 2024
1 parent 35e2e87 commit 87e3190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/visualizations.R
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ visualize <- function(
} else if (grepl("^PCA_", graphType)) {

plotData <- dataSet %>%
mutate(R.ConRep = paste0(R.Condition, "_", R.Replicate)) %>%
mutate(R.ConRep = paste0(R.Condition, "_", R.Replicate)) %>% remove_rownames() %>%
column_to_rownames(var = "R.ConRep") %>%
select(-c(R.Condition, R.Replicate))

Expand Down

0 comments on commit 87e3190

Please sign in to comment.