Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upAdd support for pzfx files #211
Conversation
This comment has been minimized.
This comment has been minimized.
This gets an error that |
Yue-Jiang left a comment
Thanks for making this happen! I think the error has to do with the |
@@ -299,3 +299,10 @@ export_delim <- function(file, x, fwrite = TRUE, sep = "\t", row.names = FALSE, | |||
requireNamespace("clipr") | |||
clipr::write_clip(content = x, row.names = row.names, col.names = col.names, sep = sep, ...) | |||
} | |||
|
|||
#' @importFrom pzfx write_pzfx |
This comment has been minimized.
This comment has been minimized.
Yue-Jiang
Sep 21, 2019
This line will result in a requirement for 'pzfx' in the Imports:
field, which causes the error Namespace dependency not required: "pzfx"
. I think removing this line should fix it.
@@ -421,3 +421,10 @@ function(file, | |||
requireNamespace("clipr") | |||
clipr::read_clip_tbl(x = clipr::read_clip(), header = header, sep = sep, ...) | |||
} | |||
|
|||
#' @importFrom pzfx read_pzfx |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Thanks for those pointers. I made the suggested changes, and now there are only notes with |
This comment has been minimized.
This comment has been minimized.
codecov-io
commented
Sep 25, 2019
•
Codecov Report
@@ Coverage Diff @@
## master #211 +/- ##
==========================================
+ Coverage 82.43% 82.51% +0.08%
==========================================
Files 18 18
Lines 871 875 +4
==========================================
+ Hits 718 722 +4
Misses 153 153
Continue to review full report at Codecov.
|
This comment has been minimized.
This comment has been minimized.
Thanks! |
billdenney commentedJun 27, 2019
Fixes #205