Skip to content

Commit

Permalink
fixed bug in global.R
Browse files Browse the repository at this point in the history
  • Loading branch information
cband committed Apr 20, 2020
1 parent 0060e45 commit f2fb1d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/global.R
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,8 @@ get_review_status <- function(sample_id, sample_path) {

if ('facets_suite_qc' %in% names(reviews)) { reviews <- reviews %>% rename(facets_qc = facets_suite_qc)}

if(!('facets_qc' %in% names(reviews))) { reviews <- reviews %>% mutate(facets_qc = NA)}

if (!('facets_qc_version' %in% names(reviews))) { reviews <- reviews %>% mutate(facets_qc_version = 'unknown') }

if (!('facets_suite_version' %in% names(reviews))) { reviews <- reviews %>% mutate(facets_suite_version = 'unknown') }
Expand Down

0 comments on commit f2fb1d7

Please sign in to comment.