-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRInterfaces.h
46 lines (35 loc) · 2.02 KB
/
RInterfaces.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// QTLBIM - QTL Bayesian Interval Mapping
// Functions that are called from the R environment
//********************************************************************
#ifndef R_INTERFACES_H
#define R_INTERFACES_H
void RSingleTraitMCMCSetup(int *nind,int *nchr,int *ngen, int *nloci,double *loci,double *prob,
double *yvalue,int *traittype,int *ncategory,
int *iter,int *thin,int *burnin,int *genoupdate,
int *epis,int *emainqtl,int *eqtl,int *mnqtl,
double *interval,int *chrnqtl,
int *envi,int *qtl_envi,int *nrancov,int *nfixcov,int *intcov,double *rancoef,double *fixcoef,int *nran,
int *depen,double *prop,int *contrast,double *censor_lo,double *censor_hi,
int *seed,int *verbose);
void RMultipleTraitsMCMCSetup(int *nind,int *nchr,int *ngen,int *npheno,int *nloci,double *loci,double *prob,
double *yvalue,int *multipletrait,int *traittype,int *ncategory,
int *iter,int *thin,int *burnin,int *algorithm,int *genoupdate,
int *epis,int *emainqtl,int *eqtl,int *mnqtl,
double *interval,int *chrnqtl,
int *envi,int *qtl_envi,int *nrancov,int *nfixcov,int *intcov,double *rancoef,double *fixcoef,int *nran,
int *depen,double *prop,
int *seed,int *verbose,
int *diffloc, int *qtlloc);
void RBayesianAnovaSetup( int *nind,int *nchr,int *ngen, int *nloci,double *loci,double *prob,
double *yvalue,int *traittype,int *ncategory,
int *iter,int *thin,int *burnin,
int *genoupdate,int *posupdate,
int *epis,int *mnqtl,
double *interval,int *chrnqtl,
int *envi,int *qtl_envi,int *nrancov,int *nfixcov,int *intcov,double *rancoef,double *fixcoef,int *nran,
int *contrast,
int *qchr,int *qloc,int *gamma_main,int *gamma_epis,double *gamma_gbye,
int *seed,int *verbose );
void ROutputManager(char **iterFile,char **covFile,char **mainFile,char **pairFile,char **gbyeFile,char **devFile,char **sigmaFile);
void R_CheckUserInterrupt(void);
#endif // R_INTERFACES_H