[Genabel-commits] r1602 - in pkg/ProbABEL: . doc src
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun Feb 9 22:30:49 CET 2014
Author: lckarssen
Date: 2014-02-09 22:30:49 +0100 (Sun, 09 Feb 2014)
New Revision: 1602
Modified:
pkg/ProbABEL/configure.ac
pkg/ProbABEL/doc/ChangeLog
pkg/ProbABEL/doc/ProbABEL_manual.tex
pkg/ProbABEL/doc/pacoxph.1
pkg/ProbABEL/doc/palinear.1
pkg/ProbABEL/doc/palogist.1
pkg/ProbABEL/doc/probabel.1
pkg/ProbABEL/src/command_line_settings.cpp
pkg/ProbABEL/src/command_line_settings.h
pkg/ProbABEL/src/coxph_data.cpp
pkg/ProbABEL/src/coxph_data.h
pkg/ProbABEL/src/data.cpp
pkg/ProbABEL/src/data.h
pkg/ProbABEL/src/eigen_mematrix.cpp
pkg/ProbABEL/src/eigen_mematrix.h
pkg/ProbABEL/src/gendata.cpp
pkg/ProbABEL/src/gendata.h
pkg/ProbABEL/src/main.cpp
pkg/ProbABEL/src/main_functions_dump.cpp
pkg/ProbABEL/src/main_functions_dump.h
pkg/ProbABEL/src/maskedmatrix.cpp
pkg/ProbABEL/src/maskedmatrix.h
pkg/ProbABEL/src/mematri1.h
pkg/ProbABEL/src/mematrix.h
pkg/ProbABEL/src/phedata.cpp
pkg/ProbABEL/src/phedata.h
pkg/ProbABEL/src/reg1.cpp
pkg/ProbABEL/src/reg1.h
pkg/ProbABEL/src/regdata.cpp
pkg/ProbABEL/src/regdata.h
pkg/ProbABEL/src/testchol.cpp
pkg/ProbABEL/src/usage.cpp
pkg/ProbABEL/src/usage.h
pkg/ProbABEL/src/utilities.cpp
pkg/ProbABEL/src/utilities.h
Log:
Added the GPL notice on all the .cpp and .h files the GenABEL team has written.
The FSF recommends putting this information in each source file.
Modified: pkg/ProbABEL/configure.ac
===================================================================
--- pkg/ProbABEL/configure.ac 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/configure.ac 2014-02-09 21:30:49 UTC (rev 1602)
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.67])
-AC_INIT(ProbABEL, 0.4.2, genabel-devel at r-forge.wu-wien.ac.at)
+AC_INIT(ProbABEL, 0.4.3, genabel-devel at r-forge.wu-wien.ac.at)
AM_INIT_AUTOMAKE([silent-rules subdir-objects])
AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([src/data.h])
Modified: pkg/ProbABEL/doc/ChangeLog
===================================================================
--- pkg/ProbABEL/doc/ChangeLog 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/doc/ChangeLog 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,7 @@
+***** v.0.4.3
+* Speed up of a factor of X after simplifying the way filevector data is
+ read in.
+
***** v.0.4.2
* The 'probabel.pl' script is now simply renamed to 'probabel' (a user
shouldn't care what scripting language we use). For at least several
Modified: pkg/ProbABEL/doc/ProbABEL_manual.tex
===================================================================
--- pkg/ProbABEL/doc/ProbABEL_manual.tex 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/doc/ProbABEL_manual.tex 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,6 +1,6 @@
\documentclass[12pt,a4paper]{article}
-\title{Manual for ProbABEL v0.4.2}
+\title{Manual for ProbABEL v0.4.3}
\author{\emph{Current Programmers:} Lennart Karssen$^{1,2}$, Maarten
Kooyman$^2$, \\
Yurii Aulchenko$^{1,3}$ \\
@@ -11,7 +11,7 @@
$^{2}${\small Erasmus MC, Rotterdam}\\
$^{3}${\small Institute of Cytology and Genetics SD RAS, Novosibirsk}
}
-\date{January 2, 2014}
+\date{January 30, 2014}
\usepackage{verbatim}
\usepackage{titleref}
@@ -295,7 +295,7 @@
short explanation to the command line options:
\begin{verbatim}
user at server:~$ palogist --help
-probabel v. 0.4.2
+probabel v. 0.4.3
(C) Yurii Aulchenko, Lennart C. Karssen, Maksim Struchalin, EMCR
Using EIGEN version 3.1.2 for matrix operations
@@ -855,7 +855,7 @@
\end{quote}
A proper reference may look like
\begin{quote}
-For the analysis of imputed data, we used the \PA{} v.0.4.2
+For the analysis of imputed data, we used \PA{} v.0.4.3
from the \texttt{GenABEL} suite of programs (Aulchenko \emph{et al.}, 2010).
\end{quote}
Modified: pkg/ProbABEL/doc/pacoxph.1
===================================================================
--- pkg/ProbABEL/doc/pacoxph.1 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/doc/pacoxph.1 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,4 +1,4 @@
-.TH pacoxph 1 "2 January 2014" "ProbABEL 0.4.2"
+.TH pacoxph 1 "2 January 2014" "ProbABEL 0.4.3"
.SH NAME
pacoxph \- Perform Genome-Wide Association Analysis using a linear model
.SH SYNOPSIS
Modified: pkg/ProbABEL/doc/palinear.1
===================================================================
--- pkg/ProbABEL/doc/palinear.1 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/doc/palinear.1 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,4 +1,4 @@
-.TH palinear 1 "2 January 2014" "ProbABEL 0.4.2"
+.TH palinear 1 "2 January 2014" "ProbABEL 0.4.3"
.SH NAME
palinear \- Perform Genome-Wide Association Analysis using a linear model
.SH SYNOPSIS
Modified: pkg/ProbABEL/doc/palogist.1
===================================================================
--- pkg/ProbABEL/doc/palogist.1 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/doc/palogist.1 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,4 +1,4 @@
-.TH palogist 1 "2 January 2014" "ProbABEL 0.4.2"
+.TH palogist 1 "2 January 2014" "ProbABEL 0.4.3"
.SH NAME
palogist \- Perform Genome-Wide Association Analysis using a linear model
.SH SYNOPSIS
Modified: pkg/ProbABEL/doc/probabel.1
===================================================================
--- pkg/ProbABEL/doc/probabel.1 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/doc/probabel.1 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,4 +1,4 @@
-.TH ProbABEL 1 "2 January 2014" "ProbABEL 0.4.2"
+.TH ProbABEL 1 "2 January 2014" "ProbABEL 0.4.3"
.SH NAME
probabel \- Wrapper around the three ProbABEL binaries, simplifying their use
.SH SYNOPSIS
Modified: pkg/ProbABEL/src/command_line_settings.cpp
===================================================================
--- pkg/ProbABEL/src/command_line_settings.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/command_line_settings.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Apr 1, 2012
* Author: mkooyman
+*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#include <getopt.h>
#include <string>
#include <iostream>
Modified: pkg/ProbABEL/src/command_line_settings.h
===================================================================
--- pkg/ProbABEL/src/command_line_settings.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/command_line_settings.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Apr 2; int 2012
* Author: mkooyman
+*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef COMMAND_LINE_SETTINGS_H_
#define COMMAND_LINE_SETTINGS_H_
#include <string>
Modified: pkg/ProbABEL/src/coxph_data.cpp
===================================================================
--- pkg/ProbABEL/src/coxph_data.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/coxph_data.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,7 +3,29 @@
*
* Created on: Mar 31, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
+
#include "coxph_data.h"
#include <iostream>
#include <cmath>
Modified: pkg/ProbABEL/src/coxph_data.h
===================================================================
--- pkg/ProbABEL/src/coxph_data.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/coxph_data.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Mar 31, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef COXPH_DATA_H_
#define COXPH_DATA_H_
Modified: pkg/ProbABEL/src/data.cpp
===================================================================
--- pkg/ProbABEL/src/data.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/data.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#include <string>
#include <sstream>
#include <fstream>
Modified: pkg/ProbABEL/src/data.h
===================================================================
--- pkg/ProbABEL/src/data.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/data.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
* \author mkooyman
*
* \brief Contains several classes we didn't put somewhere else yet
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef DATA_H_
#define DATA_H_
#include <string>
Modified: pkg/ProbABEL/src/eigen_mematrix.cpp
===================================================================
--- pkg/ProbABEL/src/eigen_mematrix.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/eigen_mematrix.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#ifndef EIGEN_MEMATRI1_H
#define EIGEN_MEMATRI1_H
#include "eigen_mematrix.h"
Modified: pkg/ProbABEL/src/eigen_mematrix.h
===================================================================
--- pkg/ProbABEL/src/eigen_mematrix.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/eigen_mematrix.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#ifndef __EIGEN_MEMATRIX_H__
#define __EIGEN_MEMATRIX_H__
#include <Eigen/Dense>
Modified: pkg/ProbABEL/src/gendata.cpp
===================================================================
--- pkg/ProbABEL/src/gendata.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/gendata.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,7 +3,29 @@
*
* Created on: Mar 8, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
+
#include <string>
#include <errno.h>
#include "gendata.h"
Modified: pkg/ProbABEL/src/gendata.h
===================================================================
--- pkg/ProbABEL/src/gendata.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/gendata.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Mar 8, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef GENDATA_H_
#define GENDATA_H_
#include <string>
Modified: pkg/ProbABEL/src/main.cpp
===================================================================
--- pkg/ProbABEL/src/main.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/main.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -32,6 +32,30 @@
// Company: Department of Epidemiology, ErasmusMC Rotterdam, The Netherlands.
//
//=============================================================================
+
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#include <stdio.h>
#include <iostream>
#include <cstdlib>
Modified: pkg/ProbABEL/src/main_functions_dump.cpp
===================================================================
--- pkg/ProbABEL/src/main_functions_dump.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/main_functions_dump.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,6 +3,26 @@
*
* Created on: Nov 27, 2013
* Author: mkooyman
+*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
Modified: pkg/ProbABEL/src/main_functions_dump.h
===================================================================
--- pkg/ProbABEL/src/main_functions_dump.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/main_functions_dump.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Nov 27, 2013
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef MAIN_FUNCTIONS_DUMP_H_
#define MAIN_FUNCTIONS_DUMP_H_
Modified: pkg/ProbABEL/src/maskedmatrix.cpp
===================================================================
--- pkg/ProbABEL/src/maskedmatrix.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/maskedmatrix.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: May 22, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#include "maskedmatrix.h"
#if EIGEN
#include "eigen_mematrix.h"
Modified: pkg/ProbABEL/src/maskedmatrix.h
===================================================================
--- pkg/ProbABEL/src/maskedmatrix.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/maskedmatrix.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: May 22, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef MASKEDMATRIX_H_
#define MASKEDMATRIX_H_
Modified: pkg/ProbABEL/src/mematri1.h
===================================================================
--- pkg/ProbABEL/src/mematri1.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/mematri1.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#ifndef MEMATRI1_H
#define MEMATRI1_H
Modified: pkg/ProbABEL/src/mematrix.h
===================================================================
--- pkg/ProbABEL/src/mematrix.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/mematrix.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#ifndef __MEMATRIX_H__
#define __MEMATRIX_H__
#include <iostream>
Modified: pkg/ProbABEL/src/phedata.cpp
===================================================================
--- pkg/ProbABEL/src/phedata.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/phedata.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#include <phedata.h>
#include <string>
#include <sstream>
Modified: pkg/ProbABEL/src/phedata.h
===================================================================
--- pkg/ProbABEL/src/phedata.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/phedata.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Mar 6, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef PHEDATA_H_
#define PHEDATA_H_
Modified: pkg/ProbABEL/src/reg1.cpp
===================================================================
--- pkg/ProbABEL/src/reg1.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/reg1.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
#include "reg1.h"
Modified: pkg/ProbABEL/src/reg1.h
===================================================================
--- pkg/ProbABEL/src/reg1.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/reg1.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -22,6 +22,30 @@
// Email: i.aoultchenko at erasmusmc.nl, m.struchalin at erasmusmc.nl
//
//==============================================================================
+
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ */
+
+
//#include "coxph_data.h"
#ifndef REG1_H_
#define REG1_H_
Modified: pkg/ProbABEL/src/regdata.cpp
===================================================================
--- pkg/ProbABEL/src/regdata.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/regdata.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Mar 29, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#include "fvlib/AbstractMatrix.h"
#include "fvlib/CastUtils.h"
#include "fvlib/const.h"
Modified: pkg/ProbABEL/src/regdata.h
===================================================================
--- pkg/ProbABEL/src/regdata.h 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/regdata.h 2014-02-09 21:30:49 UTC (rev 1602)
@@ -3,8 +3,29 @@
*
* Created on: Mar 29, 2012
* Author: mkooyman
+ *
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
*/
+
#ifndef REGDATA_H_
#define REGDATA_H_
Modified: pkg/ProbABEL/src/testchol.cpp
===================================================================
--- pkg/ProbABEL/src/testchol.cpp 2014-02-09 21:09:34 UTC (rev 1601)
+++ pkg/ProbABEL/src/testchol.cpp 2014-02-09 21:30:49 UTC (rev 1602)
@@ -1,3 +1,26 @@
+/*
+ *
+ * Copyright (C) 2009--2014 Various members of the GenABEL team. See
+ * the SVN commit logs for more details.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
[TRUNCATED]
To get the complete diff run:
svnlook diff /svnroot/genabel -r 1602
More information about the Genabel-commits
mailing list