diff options
author | Pjotr Prins | 2018-02-22 18:54:24 +0000 |
---|---|---|
committer | Pjotr Prins | 2018-02-22 18:54:24 +0000 |
commit | fa203f4fa5686846e42d3e0b9d8addad7823f52c (patch) | |
tree | 690f0224304fd6df7462910b5f278fc7fddd9bc2 | |
parent | 4231a1792418ccd287ba99a18207632cc910d865 (diff) | |
download | pangemma-fa203f4fa5686846e42d3e0b9d8addad7823f52c.tar.gz |
mantual.tex: added info on creating unique directory for output
-rw-r--r-- | doc/manual.tex | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/doc/manual.tex b/doc/manual.tex index 1e042e7..0912a6c 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -1439,12 +1439,25 @@ category and the number of individuals in the study. \section{Questions and Answers} -\begin{enumerate} +\subsection{How do I use a unique output directory?} + +You can use -outdir with gemma as a bash script + +\begin{verbatim} + -outdir $(mktemp -d -p $HOME) +\end{verbatim} + +makes a unique temp directory where the output is stored, here +relative to $HOME, but you can take any path. + + +\subsection{How do I prepare the phenotype file for BSLMM?} + +Q: I want to perform a cross validation with my data, and want to fit +BSLMM in the training data set and obtain predicted values for +individuals in the test data set. How should I prepare the phenotype +file? -\item Q: I want to perform a cross validation with my data, and want - to fit BSLMM in the training data set and obtain predicted values - for individuals in the test data set. How should I prepare the - phenotype file? \\ A: One should always use the same phenotype and genotype files for both fitting BSLMM and obtaining predicted values. Therefore, one should combine individuals in the training set and test set into a |