This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #172 from MKLau/dev
v 1.1.3
- Loading branch information
Showing
91 changed files
with
2,163 additions
and
3,798 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
^codecov\.yml$ | ||
CONTRIBUTE.md | ||
CONTRIBUTING.md | ||
cran-comments.md | ||
.travis.yml | ||
cleanR-demo.gif | ||
cleanR_demo_vid.png | ||
^exec/loader.R | ||
^example | ||
^joss | ||
^ropensci | ||
^CODE_OF_CONDUCT\.md$ | ||
README.Rmd | ||
README.rmd | ||
README.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ vignettes/*.pdf | |
# Temporary files created by R markdown | ||
*.utf8.md | ||
*.knit.md | ||
|
||
README.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
Type: Package | ||
Package: Rclean | ||
Title: A Tool for Writing Cleaner, More Transparent Code | ||
Version: 1.1.0 | ||
Version: 1.1.3 | ||
Authors@R: person("Matthew", "Lau", email = "[email protected]", role = c("aut", "cre")) | ||
Description: To create clearer, more concise code provides this | ||
toolbox helps coders to isolate the essential parts of a | ||
script that produces a chosen result, such as an object, | ||
tables and figures written to disk and even warnings and | ||
errors. | ||
URL: https://github.com/ProvTools/Rclean | ||
BugReports: https://github.com/ProvTools/Rclean/issues | ||
tables and figures written to disk. | ||
URL: https://github.com/MKLau/Rclean | ||
BugReports: https://github.com/MKLau/Rclean/issues | ||
License: GPL-3 | file LICENSE | ||
Depends: | ||
R (>= 3.5.0) | ||
Imports: igraph, jsonlite, formatR, CodeDepends, methods, Rgraphviz | ||
Imports: igraph, jsonlite, CodeDepends, methods, Rgraphviz, clipr, styler | ||
biocViews: Rgraphviz, graph | ||
Suggests: roxygen2, testthat, covr, knitr | ||
Remotes: MKLau/CodeDepends | ||
Language: en-US | ||
Encoding: UTF-8 | ||
RoxygenNote: 6.1.1 | ||
VignetteBuilder: knitr | ||
LazyData: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(clean) | ||
export(codeGraph) | ||
export(get.libs) | ||
export(get.spine) | ||
export(p.spine) | ||
export(parse.graph) | ||
export(parse.info) | ||
export(read.prov) | ||
export(var.lineage) | ||
export(write.code) | ||
export(code_graph) | ||
export(get_libs) | ||
export(get_vars) | ||
export(keep) | ||
importFrom(CodeDepends,getDetailedTimelines) | ||
importFrom(CodeDepends,getInputs) | ||
importFrom(CodeDepends,getVariables) | ||
importFrom(CodeDepends,readScript) | ||
importFrom(Rgraphviz,plot) | ||
importFrom(formatR,tidy_source) | ||
importFrom(clipr,write_clip) | ||
importFrom(grDevices,dev.off) | ||
importFrom(grDevices,pdf) | ||
importFrom(igraph,dfs) | ||
importFrom(igraph,graph_from_adjacency_matrix) | ||
importFrom(igraph,igraph.to.graphNEL) | ||
importFrom(jsonlite,fromJSON) | ||
importFrom(methods,slot) | ||
importFrom(stats,na.omit) | ||
importFrom(utils,capture.output) | ||
importFrom(styler,style_text) | ||
importFrom(utils,sessionInfo) | ||
importFrom(utils,tail) |
Oops, something went wrong.