fi
# loop on modified files
- git diff --cached --name-only $against |while read file;
+ git diff --cached --name-only $against | while read file;
do
local ext=$(expr "$file" : ".*\(\..*\)")
case $ext in
# Indent the file with `indent' if this is a R file
__indent_R() {
- if test ! -x "$INDENT"
- then
- return;
- fi
if test ! -f $file
then
return;
#' constructionModelesLassoRank
#'
#' Construct a collection of models with the Lasso-Rank procedure.
-#'
+#'
#' @param S output of selectVariables.R
#' @param k number of components
#' @param mini integer, minimum number of iterations in the EM algorithm, by default = 10