Skip to content

Commit

Permalink
Merge pull request #49 from carynwillis/master
Browse files Browse the repository at this point in the history
Fix typo in file tagging script
  • Loading branch information
jaamarks authored Nov 18, 2024
2 parents 7bcb1a8 + 8f32eef commit d71f7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion file_tag_sevenbridges/v1.0/file_tagging.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ for (i in c(1:nrow(df_files_out))){
file_ext <- file_ext(file_name)

file_name_sep<- str_split(file_name_base,pattern = "_",simplify = TRUE)
if (length(file_name_sep)<=6 | file_name_sep[1]!="RMIP"){
if (length(file_name_sep)<6 | file_name_sep[1]!="RMIP"){
log_print(paste("File", file_name, "is not formatted correctly. This file has not been tagged."), blank_after = FALSE)
}else{
log_print(paste("File", file_name, "is formatted correctly. Tagging..."), blank_after = FALSE)
Expand Down

0 comments on commit d71f7bf

Please sign in to comment.