... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: PanomiR |
2 |
-Title: Inferring miRNAs targeting of pathway groups |
|
3 |
-Version: 0.99.7 |
|
2 |
+Title: Detection of miRNAs that regulate interacting groups of pathways |
|
3 |
+Version: 0.99.8 |
|
4 | 4 |
Authors@R: c( |
5 | 5 |
person("Pourya", "Naderi", email = "pouryany@gmail.com", |
6 | 6 |
role = c("aut", "cre")), |
... | ... |
@@ -14,8 +14,9 @@ Description: PanomiR is a package to detect miRNAs that target groups of |
14 | 14 |
pathways from gene expression data. This package provides functionality |
15 | 15 |
for generating pathway activity profiles, determining differentially |
16 | 16 |
activated pathways between user-specified conditions, determining |
17 |
- clusters of pathways via PCxN package, and generating miRNAs targeting |
|
18 |
- clusters of pathways. Each function can be used on its own. |
|
17 |
+ clusters of pathways via the PCxN package, and generating miRNAs targeting |
|
18 |
+ clusters of pathways. These function can be used separately or sequentially |
|
19 |
+ to analyze RNA-Seq data. |
|
19 | 20 |
License: MIT + file LICENSE |
20 | 21 |
Encoding: UTF-8 |
21 | 22 |
RoxygenNote: 7.1.2 |
... | ... |
@@ -406,7 +406,7 @@ sessionInfo() |
406 | 406 |
|
407 | 407 |
## R Under development (unstable) (2021-12-03 r81290) |
408 | 408 |
## Platform: x86_64-apple-darwin17.0 (64-bit) |
409 |
- ## Running under: macOS Mojave 10.14.6 |
|
409 |
+ ## Running under: macOS Big Sur/Monterey 10.16 |
|
410 | 410 |
## |
411 | 411 |
## Matrix products: default |
412 | 412 |
## BLAS: /Library/Frameworks/R.framework/Versions/4.2/Resources/lib/libRblas.0.dylib |
... | ... |
@@ -419,7 +419,7 @@ sessionInfo() |
419 | 419 |
## [1] stats graphics grDevices utils datasets methods base |
420 | 420 |
## |
421 | 421 |
## other attached packages: |
422 |
- ## [1] PanomiR_0.99.1 |
|
422 |
+ ## [1] PanomiR_0.99.4 |
|
423 | 423 |
## |
424 | 424 |
## loaded via a namespace (and not attached): |
425 | 425 |
## [1] fgsea_1.21.0 colorspace_2.0-2 ggtree_3.3.1 |
... | ... |
@@ -434,21 +434,21 @@ sessionInfo() |
434 | 434 |
## [28] httr_1.4.2 assertthat_0.2.1 Matrix_1.4-0 |
435 | 435 |
## [31] fastmap_1.1.0 lazyeval_0.2.2 cli_3.1.0 |
436 | 436 |
## [34] limma_3.51.2 tweenr_1.0.2 htmltools_0.5.2 |
437 |
- ## [37] tools_4.2.0 igraph_1.2.10 gtable_0.3.0 |
|
437 |
+ ## [37] tools_4.2.0 igraph_1.2.11 gtable_0.3.0 |
|
438 | 438 |
## [40] glue_1.6.0 GenomeInfoDbData_1.2.7 reshape2_1.4.4 |
439 | 439 |
## [43] DO.db_2.9 dplyr_1.0.7 fastmatch_1.1-3 |
440 | 440 |
## [46] Rcpp_1.0.7 enrichplot_1.15.2 Biobase_2.55.0 |
441 |
- ## [49] vctrs_0.3.8 Biostrings_2.63.0 ape_5.6 |
|
441 |
+ ## [49] vctrs_0.3.8 Biostrings_2.63.1 ape_5.6-1 |
|
442 | 442 |
## [52] nlme_3.1-153 ggraph_2.0.5 xfun_0.29 |
443 | 443 |
## [55] stringr_1.4.0 lifecycle_1.0.1 clusterProfiler_4.3.1 |
444 |
- ## [58] XML_3.99-0.8 DOSE_3.21.1 org.Hs.eg.db_3.14.0 |
|
444 |
+ ## [58] XML_3.99-0.8 DOSE_3.21.2 org.Hs.eg.db_3.14.0 |
|
445 | 445 |
## [61] zlibbioc_1.41.0 MASS_7.3-54 scales_1.1.1 |
446 | 446 |
## [64] tidygraph_1.2.0 parallel_4.2.0 RColorBrewer_1.1-2 |
447 | 447 |
## [67] yaml_2.2.1 memoise_2.0.1 gridExtra_2.3 |
448 | 448 |
## [70] ggplot2_3.3.5 downloader_0.4 ggfun_0.0.4 |
449 | 449 |
## [73] yulab.utils_0.0.4 stringi_1.7.6 RSQLite_2.2.9 |
450 |
- ## [76] S4Vectors_0.33.8 tidytree_0.3.6 BiocGenerics_0.41.2 |
|
451 |
- ## [79] BiocParallel_1.29.8 GenomeInfoDb_1.31.1 rlang_0.4.12 |
|
450 |
+ ## [76] S4Vectors_0.33.9 tidytree_0.3.6 BiocGenerics_0.41.2 |
|
451 |
+ ## [79] BiocParallel_1.29.10 GenomeInfoDb_1.31.1 rlang_0.4.12 |
|
452 | 452 |
## [82] pkgconfig_2.0.3 bitops_1.0-7 evaluate_0.14 |
453 | 453 |
## [85] lattice_0.20-45 purrr_0.3.4 treeio_1.19.1 |
454 | 454 |
## [88] patchwork_1.1.1 shadowtext_0.1.0 bit_4.0.4 |
... | ... |
@@ -1,7 +1,6 @@ |
1 | 1 |
--- |
2 |
-title: "PanomiR Package Vignette" |
|
3 |
-author: "Pourya Naderi" |
|
4 |
-package: PanomiR |
|
2 |
+title: "miRNA and pathway analysis with PanomiR" |
|
3 |
+author: "Pourya Naderi, Alan Teo, Ilya Sytchev, and Winston Hide" |
|
5 | 4 |
output: |
6 | 5 |
BiocStyle::html_document |
7 | 6 |
bibliography: references.bib |
... | ... |
@@ -26,7 +25,7 @@ functionality in PanomiR. |
26 | 25 |
|
27 | 26 |
# Installation |
28 | 27 |
|
29 |
-PanomiR can be accessed via Bioconductor. To install, start R (version >= 4.1.0) |
|
28 |
+PanomiR can be accessed via Bioconductor. To install, start R (version >= 4.2.0) |
|
30 | 29 |
and run the following code. |
31 | 30 |
|
32 | 31 |
```{r installation_bioc, eval = FALSE} |