/fingerprint/man/read.Rd

http://github.com/rajarshi/cdkr · Unknown · 64 lines · 58 code · 6 blank · 0 comment · 0 complexity · 9c6c3ba8ac30ddb3b14803c93dce2a74 MD5 · raw file

  1. \name{fp.read, fp.read.to.matrix}
  2. \alias{fp.read}
  3. \alias{fp.read.to.matrix}
  4. \title{
  5. Functions to Read Fingerprints From Files
  6. }
  7. \description{
  8. \code{fp.read} reads in a set of fingerprints from a file. Fingerprint
  9. output from the CDK, MOE and BCI can be handled.
  10. Each fingerprint is represented as a \code{fingerprint} object.
  11. \code{fp.read} returns a \code{list} structure, each element being a
  12. \code{fingerprint} or \code{nfeatvec} object, depending on the value
  13. of the \code{binary} argument.
  14. \code{fp.read.to.matrix} is a utility function that reads the fingerprints directly to
  15. matrix form (columns are the bit positions and the rows are the objects whose fingerprints
  16. have been evaluated). Note that this method does not currently work with feature vector
  17. fingerprints.
  18. }
  19. \usage{
  20. fp.read(f='fingerprint.txt', size=1024, lf=cdk.lf, header=FALSE, binary=TRUE)
  21. fp.read.to.matrix(f='fingerprint.txt', size=1024, lf=cdk.lf, header=FALSE)
  22. }
  23. \arguments{
  24. \item{f}{
  25. File containing the fingperprints
  26. }
  27. \item{size}{
  28. The bit length of the fingerprints being considered
  29. }
  30. \item{lf}{
  31. A line reading function that parses a single line from
  32. a fingerprint file. A number of functions are provided
  33. that parse the fingerprints from the output of the CDK, MOE and the
  34. BCI toolkit. In addition, support is now available for the FPS format
  35. from the chemfp project (\url{http://code.google.com/p/chem-fingerprints}).
  36. }
  37. \item{header}{
  38. Indicates whether the first line of the fingerprint file is
  39. a header line
  40. }
  41. \item{binary}{
  42. If \code{TRUE} indicates that a binary fingerprint will be read in. Otherwise indicates
  43. that a feature vector style fingerprint (such as from a circular fingerprint) is being
  44. read in
  45. }
  46. }
  47. \seealso{
  48. \code{\link{cdk.lf}},
  49. \code{\link{moe.lf}},
  50. \code{\link{bci.lf}},
  51. \code{\link{ecfp.lf}},
  52. \code{\link{fps.lf}}
  53. }
  54. \value{
  55. A \code{list} or \code{matrix} of fingerprints
  56. }
  57. \author{Rajarshi Guha \email{rajarshi.guha@gmail.com}}
  58. \keyword{logic}