Skip to content

Commit 20c6914

Browse files
authored
Merge pull request #103 from zachcp/cranchecks23
Cranchecks23
2 parents f49b96b + 358005c commit 20c6914

File tree

6 files changed

+64
-1
lines changed

6 files changed

+64
-1
lines changed

rcdk/.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
^_pkgdown\.yml$
55
^docs$
66
^pkgdown$
7+
^revdep$

rcdk/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: rcdk
2-
Version: 3.4.9.2
2+
Version: 3.5.0
33
Date: 2019-01-21
44
Title: Interface to the 'CDK' Libraries
55
Authors@R: c(person('Rajarshi', 'Guha', role=c('aut',"cph"), email='rajarshi.guha@gmail.com'),

rcdk/NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export(get.chem.object.builder)
2626
export(get.connected.atom)
2727
export(get.connected.atoms)
2828
export(get.connection.matrix)
29+
export(get.depictor)
2930
export(get.desc.categories)
3031
export(get.desc.names)
3132
export(get.element.types)

rcdk/NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
v3.5.0 - update to RCDKlibs 2.3. This changes uderlying AtomContainer defualt to Atomcontainer2 and also has new support for mass spec mass functions. On the rcdk side we have moved to a tidyverse documentation and build system.
12
v3.4.7 - minor update to comply with CRAN policy. Minimum Java 8 required; fix an issue where unittests were writing to system files.
23

34
v3.3.5 - update to work with CDK 1.5.13 with the new Depiction module

rcdk/R/visual.R

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,23 @@
4545
## }
4646
## }
4747

48+
#' get.depictor
49+
#'
50+
#' return an RcdkDepictor.
51+
#'
52+
#' @param width Default. \code{200}
53+
#' @param height Default. \code{200}
54+
#' @param zoom Default. \code{1.3}
55+
#' @param style Default. \code{cow}
56+
#' @param annotate Default. \code{off}
57+
#' @param abbr Default. \code{on}
58+
#' @param suppressh Default. \code{TRUE}
59+
#' @param showTitle Default. \code{FALSE}
60+
#' @param smaLimit Default. \code{100}
61+
#' @param sma Default. \code{NULL}
62+
#'
63+
#' @export
64+
#'
4865
get.depictor <- function(width = 200, height = 200, zoom = 1.3, style = "cow", annotate = "off", abbr = "on",
4966
suppressh = TRUE, showTitle = FALSE, smaLimit = 100, sma = NULL) {
5067
if (is.null(sma)) sma <- ""

rcdk/man/get.depictor.Rd

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)