These updates are related to how we call the file paths in the verification workflow to make them more robust across OS's.
I use here() instead of string concatenation to make those calls more robust across OS's.
I replace readRDS() with read_rds() to make pulling in data more robust across OS's.
Note that I did not update saveRDS() with write_rds(). This made the row updates slower and error out. Something to look into in the future. saveRDS works fine still.
@kathryn-willi and @SamStruthers -- If y'all could make sure that this doesn't break things on your end and behaves as expected that would be great.
@ecogub -- Nick, if you could test to see if this works at all on your windows machine that would be great. lmk if you can't so I can seek out a window machine to test on.
These updates are related to how we call the file paths in the verification workflow to make them more robust across OS's.
here()
instead of string concatenation to make those calls more robust across OS's.readRDS()
withread_rds()
to make pulling in data more robust across OS's.saveRDS()
withwrite_rds()
. This made the row updates slower and error out. Something to look into in the future.saveRDS
works fine still.@kathryn-willi and @SamStruthers -- If y'all could make sure that this doesn't break things on your end and behaves as expected that would be great.
@ecogub -- Nick, if you could test to see if this works at all on your windows machine that would be great. lmk if you can't so I can seek out a window machine to test on.