fastglmm
Massively scalable generalized linear mixed models
Loading...
Searching...
No Matches
fastglmm.h
Go to the documentation of this file.
1/***************************************************************
2 * @file fastglmm.h
3 * @author Gabriel Hoffman
4 * @email gabriel.hoffman@mssm.edu
5 * @brief Import headers
6 * Copyright (C) 2024 Gabriel Hoffman
7 **************************************************************/
8
9#ifndef _FASTGLMM_H_
10#define _FASTGLMM_H_
11
12// if -D USE_R, use RcppArmadillo library
13#ifdef USE_R
14// [[Rcpp::depends(RcppParallel)]]
15#include <RcppArmadillo.h>
16#else
17#include <armadillo>
18#endif
19
20#include "fastglmm_fit.h"
21#include "ModelFit.h"
22#include "lmmFitResponses.h"
23#include "lmmFitFeatures.h"
24#include "glmmFitResponses.h"
25#include "glmmFitFeatures.h"
26
27
28#endif