Fix bug when application foreground list was empty
parent
12ceb87090
commit
2548539dc4
|
@ -33,7 +33,9 @@ genre_catalogue <- data.frame()
|
|||
catalogue_source <- snakemake@params[["catalogue_source"]]
|
||||
update_catalogue_file <- snakemake@params[["update_catalogue_file"]]
|
||||
scrape_missing_genres <- snakemake@params[["scrape_missing_genres"]]
|
||||
apps_with_genre <- data.frame(matrix(ncol=length(colnames(apps)) + 1,nrow=0, dimnames=list(NULL, c(colnames(apps), "genre"))))
|
||||
|
||||
if(nrow(apps) > 0){
|
||||
if(catalogue_source == "GOOGLE"){
|
||||
apps_with_genre <- apps %>% mutate(genre = NA_character_)
|
||||
} else if(catalogue_source == "FILE"){
|
||||
|
@ -53,5 +55,6 @@ if(catalogue_source == "GOOGLE" || (catalogue_source == "FILE" && scrape_missing
|
|||
write.csv(genre_catalogue, file = snakemake@params[["catalogue_file"]], row.names = FALSE)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
write.csv(apps_with_genre, snakemake@output[[1]], row.names = FALSE)
|
Loading…
Reference in New Issue