You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* - fix links to fingerprint package and update the docs
* Add Egon and bump version
* Fix a few test fns and lints
* update news file and Cran comments for submission
* update cache
* http->https URL Updates
* update description and Vignetter
* ignore the vignette that uses depict, which is not on CRAN and is causing problems
* add cran
* Clean build
* simplify examples for CRAN tests
* Remove expensive tests when on CRAN
* Using MACCs in our examples to speed calculation
* update cran_comments
* update the linux CRAN detection
* fix one more URL
* update CRAN submission markdown
* fix: URL moved permanently
* fix: set CPUs to 1 inside of CHECK environments
* fix: run all tests during the check now that CPU usage has been limited in CHECK envs
* fix update CRAN submission docs
* spelling
* update the date
* Correct first name
* Setup JAVA for single threaded testing to avoid triggering warning on CRAN
* prep for resubmission
* rebuild docs
---------
Co-authored-by: Egon Willighagen <egon.willighagen@gmail.com>
Copy file name to clipboardExpand all lines: rcdk/NEWS.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# rcdk 3.9.0
1
+
# rcdk 3.8.2
2
2
3
-
* Update rCDK to work with rcdklibs 2.9
3
+
* Update rCDK to work with rcdklibs 2.11
4
4
5
5
# rcdk 3.8.0
6
6
@@ -13,9 +13,11 @@
13
13
* Update rCDK to work with rcdklibs 2.8
14
14
15
15
16
+
17
+
16
18
# rcdk 3.6.0
17
19
18
-
* Fix code to handle changes to JDK17. Notably, I needed to reduce the use of the J notation in a nubmer of places in favor of direct calls.
20
+
* Fix code to handle changes to JDK17. Notably, I needed to reduce the use of the J notation in a number of places in favor of direct calls.
19
21
* formally deprecated `do.typing` in favor of `set.atom.types`
20
22
* Updated handling of atomic descriptors to resolve a name mismatch bug
21
23
* Added a test case for atomic descriptors (thanks to Francesca Di Cesare)
@@ -30,7 +32,7 @@
30
32
31
33
# rcdk 3.5.0
32
34
33
-
* 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.
35
+
* update to RCDKlibs 2.3. This changes underlying AtomContainer default 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.
Copy file name to clipboardExpand all lines: rcdk/R/fingerprint.R
+31-33Lines changed: 31 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
#' Generate molecular fingerprints
2
-
#'
2
+
#'
3
3
#' `get.fingerprint` returns a `fingerprint` object representing molecular fingerprint of
4
4
#' the input molecule.
5
-
#'
5
+
#'
6
6
#' @param molecule A \code{jobjRef} object to an \code{IAtomContaine}
7
7
#' @param type The type of fingerprint. Possible values are:
8
8
#' \itemize{
@@ -18,52 +18,50 @@
18
18
#' \item pubchem - 881 bit fingerprints defined by PubChem
19
19
#' \item kr - 4860 bit fingerprint defined by Klekota and Roth
20
20
#' \item shortestpath - A fingerprint based on the shortest paths between pairs of atoms and takes into account ring systems, charges etc.
21
-
#' \item signature - A feature,count type of fingerprint, similar in nature to circular fingerprints, but based on the signature
21
+
#' \item signature - A feature,count type of fingerprint, similar in nature to circular fingerprints, but based on the signature
22
22
#' descriptor
23
23
#' \item circular - An implementation of the ECFP6 (default) fingerprint. Other circular types can be chosen by modifying the \code{circular.type} parameter.
24
24
#' \item substructure - Fingerprint based on list of SMARTS pattern. By default a set of functional groups is tested.
25
25
#' }
26
26
#' @param fp.mode The style of fingerprint. Specifying "`bit`" will return a binary fingerprint,
27
-
#' "`raw`" returns the the original representation (usually sequence of integers) and
27
+
#' "`raw`" returns the the original representation (usually sequence of integers) and
28
28
#' "`count`" returns the fingerprint as a sequence of counts.
29
29
#' @param depth The search depth. This argument is ignored for the
30
30
#' `pubchem`, `maccs`, `kr` and `estate` fingerprints
31
-
#' @param size The final length of the fingerprint.
32
-
#' This argument is ignored for the `pubchem`, `maccs`, `kr`, `signature`, `circular` and
31
+
#' @param size The final length of the fingerprint.
32
+
#' This argument is ignored for the `pubchem`, `maccs`, `kr`, `signature`, `circular` and
33
33
#' `estate` fingerprints
34
34
#' @param substructure.pattern List of characters containing the SMARTS pattern to match. If the an empty list is provided (default) than the functional groups substructures (default in CDK) are used.
35
35
#' @param circular.type Name of the circular fingerprint type that should be computed given as string. Possible values are: 'ECFP0', 'ECFP2', 'ECFP4', 'ECFP6' (default), 'FCFP0', 'FCFP2', 'FCFP4' and 'FCFP6'.
36
36
#' @param verbose Verbose output if \code{TRUE}
37
-
#' @return an S4 object of class \code{\link{fingerprint-class}} or \code{\link{featvec-class}},
37
+
#' @return an S4 object of class \code{\link[fingerprint]{fingerprint-class}} or \code{\link[fingerprint]{featvec-class}},
38
38
#' which can be manipulated with the fingerprint package.
0 commit comments