Skip to content

Commit

Permalink
Merge pull request #3157 from vgteam/roc-plot
Browse files Browse the repository at this point in the history
Make roc plotting script work
  • Loading branch information
adamnovak authored Jan 19, 2021
2 parents 36e4463 + 2a30d0b commit 58971fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/plot-roc.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if (length(commandArgs(TRUE)) > 3) {
}

# Determine the order of aligners, based on sorting in a dash-separated tag aware manner
aligner.names <- levels(dat$aligner)
aligner.names <- levels(factor(dat$aligner))
name.lists <- aligner.names %>% (function(name) map(name, (function(x) as.list(unlist(strsplit(x, "-"))))))
# Transpose name fragments into a list of vectors for each position, with NAs when tag lists end early
max.parts <- max(sapply(name.lists, length))
Expand Down

2 comments on commit 58971fb

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for merge to master. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 14712 seconds

@adamnovak
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch v1.30.0. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 15294 seconds

Please sign in to comment.