Fix bug when application foreground list was empty

pull/95/head
JulioV 2020-03-05 13:23:21 -05:00
parent 12ceb87090
commit 2548539dc4
1 changed files with 18 additions and 15 deletions

View File

@ -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)