Skip to content

Commit

Permalink
version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinicius Mayrink authored and cran-robot committed Nov 29, 2023
1 parent 35569ea commit ed34066
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 11 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Title: Fitting a Bayesian Sparse Latent Factor Model in Gene Expression
Analysis
Authors@R: c(person("Vinicius", "Mayrink", role = c("aut","cre"), email = "vdinizm@gmail.com"),
person("Joao", "Duarte", role = c("aut")))
Version: 1.0.1
Version: 1.0.2
Author: Vinicius Mayrink [aut, cre],
Joao Duarte [aut]
Maintainer: Vinicius Mayrink <vdinizm@gmail.com>
Expand All @@ -15,7 +15,7 @@ LinkingTo: Rcpp, RcppArmadillo
Encoding: UTF-8
License: GPL-2
NeedsCompilation: yes
RoxygenNote: 7.1.0
Packaged: 2020-03-15 20:20:33 UTC; vinicius
RoxygenNote: 7.2.3
Packaged: 2023-11-28 17:51:24 UTC; vinicius
Repository: CRAN
Date/Publication: 2020-03-15 22:20:02 UTC
Date/Publication: 2023-11-28 18:10:02 UTC
13 changes: 7 additions & 6 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
638b23f3d0c091a7f0a43812e1201a36 *DESCRIPTION
e6e80f3d5ac67cf4cfe94ed870e41982 *NAMESPACE
5caf0600ffcda7e577060d85fb919277 *NEWS
2cc4e1f546a75c7ad14219be5d8f23da *DESCRIPTION
272302400fa9e6785b9469a1ab282168 *NAMESPACE
bc6af3d7057ed27bbf41a54a87d3cbd8 *NEWS
cb351d710987f23af12ef8fc13359267 *R/RcppExports.R
32e909834a9fc4e509216e033d45c8f6 *R/class_interval.r
31c1bb25acd8033e35b2945f4d0af1b3 *R/plot_matrix.r
85e62cc37a75b74efccc1756de31f623 *R/process_matrix.r
0481302f1e40523bce3b6c0c534e90dc *R/slfm.r
569695efe76f89b4ebf723bd4407252b *R/slfm.r
dae4e61c3d59571c73a612d70c75333b *R/slfm_list.r
7b1c946487a4fd4fd0f7ae10133e18bd *R/slfm_package.r
73bce8c33cf46e5d1ca026b65f114328 *R/slfm_package.r
f931b0ae1229d3bd4465f980d5ef58a3 *inst/CITATION
a4340fd3fbca4d522de23c435cfb50c7 *man/plot_matrix.Rd
a32eb4a5665344d45ce55019efbafbf6 *man/print.slfm.Rd
7f9b555789605faf8d447cff476b7905 *man/process_matrix.Rd
be2179a8f5cefb0964ca32adc72ec280 *man/slfm.Rd
a50b3a22ad379f324c1498a5a25621db *man/slfm_list.Rd
c010cf64d75b8453bdaeed412cd8a359 *man/slfm_package.Rd
d39374b1974026c1dad06e027c2a40c9 *man/slfm_package.Rd
bcc42aaeb0a69ec1b279b42021751d66 *src/Makevars
3ef757384e0c95c1492b069cf4548b01 *src/Makevars.win
a6cd8595a15d330f85f0057257524388 *src/RcppExports.cpp
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Generated by roxygen2: do not edit by hand

S3method(print,slfm)
export(plot_matrix)
export(process_matrix)
export(slfm)
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
slfm 1.0.2
===========

* including package \alias as per "Documenting packages" in R-exts.


slfm 1.0.1
===========

Expand Down
8 changes: 7 additions & 1 deletion R/slfm.r
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,13 @@ slfm <- function(
obj
}

print.slfm <- function(x) {
#' Print method for an slfm object
#' @aliases print.slfm
#' @export
#' @param x object of the class 'slfm'.
#' @param ... further arguments passed to or from other methods.
#'
print.slfm <- function(x, ...) {
cat("SLFM object", "\n")
cat("\n")
cat("Dimensions","\n")
Expand Down
1 change: 1 addition & 0 deletions R/slfm_package.r
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
#'
#' @docType package
#' @name slfm_package
#' @aliases slfm-package
NULL
16 changes: 16 additions & 0 deletions man/print.slfm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/slfm_package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ed34066

Please sign in to comment.