Browse code

v-0.99.9

tagtag authored on 20/03/2023 14:17:37
Showing 4 changed files

... ...
@@ -1,3 +1,3 @@
1
-# TDbasedUFEadv 0.99.8
1
+# TDbasedUFEadv 0.99.9
2 2
 
3 3
 * Addressing many comments from reviewers. 
... ...
@@ -3,7 +3,7 @@
3 3
 #' @param matrix1 the first input matrix
4 4
 #' @param matrix2 the second input matrix
5 5
 #'
6
-#' @return A tensor generated from the first and second matricies 
6
+#' @return A tensor generated from the first and second matrices 
7 7
 #' @export
8 8
 #'
9 9
 #' @examples
... ...
@@ -51,14 +51,14 @@ package is similar to [DESeq2](https://doi.org/doi:10.18129/B9.bioc.DESeq2) or [
51 51
 identify differentially expressed genes. In contrast to those supervised methods,
52 52
 the present method is unsupervised one, which provides users what kind of 
53 53
 profiles are observed over samples, and users are advised to select one of
54
-fivarite features by which features are selected. In addition to this, the
54
+favorite features by which features are selected. In addition to this, the
55 55
 present method is suitable to small number of samples associated with large 
56 56
 number of features. Since this situation is very common in genomics, the 
57 57
 present method is supposed to be suitable to be applied to genomics, although
58 58
 it does not look liked the methods very specific to genomics science. 
59
-Actually, we have published the number of papers using the metods inplemented 
60
-in the present package. I hope that one can make uss of this package for his/her
61
-own reseraches. 
59
+Actually, we have published the number of papers using the methods implemented 
60
+in the present package. I hope that one can make use of this package for his/her
61
+own researches. 
62 62
 
63 63
 
64 64
 # Integrated analysis of two omics data sets
... ...
@@ -116,12 +116,12 @@ mode (see below), here we assume that you have already finished the selection.
116 116
 input_all <- selectSingularValueVectorLarge(HOSVD,cond,input_all=c(2,9)) #Batch mode
117 117
 ```
118 118
 
119
-In the case you prefer to select by yourself  you can execute intearctive mode.
119
+In the case you prefer to select by yourself  you can execute interactive mode.
120 120
 ```
121 121
 input_all <- selectSingularValueVectorLarge(HOSVD,cond)
122 122
 ```
123 123
 When you can see ``Next'', ``Prev'', and ``Select'' radio buttons by which you 
124
-can performs selection as well as histogram and standard deviation optimiztion
124
+can performs selection as well as histogram and standard deviation optimization
125 125
 by which you can verify the success of selection interactively.
126 126
 
127 127
 
... ...
@@ -273,7 +273,7 @@ above, since  vignettes does not allow interactive mode.
273 273
 ```
274 274
 index_all <- selectFeatureTransRect(HOSVD,cond,de=c(0.01,0.01))
275 275
 ```
276
-and try to select ireratively. Selected features can be shown in the below. 
276
+and try to select iteratively. Selected features can be shown in the below. 
277 277
 
278 278
 ```{r}
279 279
 head(tableFeaturesSquare(Z,index_all,1))