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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
phenofiles = height.txt \
logist_data.txt \
mmscore_pheno.PHE \
coxph_data.txt
gtdatadir = gtdata
genofiles = $(gtdatadir)/test.mldose \
$(gtdatadir)/test.mlprob \
$(gtdatadir)/test.mlinfo \
$(gtdatadir)/test.map \
$(gtdatadir)/test.dose.fvi \
$(gtdatadir)/test.dose.fvd \
$(gtdatadir)/test.prob.fvi \
$(gtdatadir)/test.prob.fvd \
$(gtdatadir)/mmscore_gen.mlinfo \
$(gtdatadir)/mmscore_gen.mldose \
$(gtdatadir)/mmscore_gen.mlprob \
$(gtdatadir)/mmscore_gen.dose.fvi \
$(gtdatadir)/mmscore_gen.dose.fvd \
$(gtdatadir)/mmscore_gen.prob.fvi \
$(gtdatadir)/mmscore_gen.prob.fvd
additional_files = mmscore.R \
mmscore_InvSigma_aj.sex.age.dat \
README
example_scripts = example_qt.sh \
example_bt.sh \
example_cox.sh \
example_mmscore.sh
exampledir = $(pkgdatadir)/examples
dist_example_DATA = $(phenofiles) $(additional_files)
dist_example_SCRIPTS = $(example_scripts)
gdatadir = $(pkgdatadir)/examples/gtdata
dist_gdata_DATA = $(genofiles)
cleanfiles_example_qt = height_allcov_fv_add.out.txt \
height_base_add.out.txt \
height_base_fv_add.out.txt \
height_int1_fv_add.out.txt \
height_ngp2_2df.out.txt \
height_ngp2_add.out.txt \
height_ngp2_allcov_fv_2df.out.txt \
height_ngp2_allcov_fv_add.out.txt \
height_ngp2_allcov_fv_domin.out.txt \
height_ngp2_allcov_fv_over_domin.out.txt \
height_ngp2_allcov_fv_recess.out.txt \
height_ngp2_domin.out.txt \
height_ngp2_fv_2df.out.txt \
height_ngp2_fv_add.out.txt \
height_ngp2_fv_domin.out.txt \
height_ngp2_fv_over_domin.out.txt \
height_ngp2_fv_recess.out.txt \
height_ngp2_int1_fv_2df.out.txt \
height_ngp2_int1_fv_add.out.txt \
height_ngp2_int1_fv_domin.out.txt \
height_ngp2_int1_fv_over_domin.out.txt \
height_ngp2_int1_fv_recess.out.txt \
height_ngp2_over_domin.out.txt \
height_ngp2_recess.out.txt \
height_ngp2_robust_fv_2df.out.txt \
height_ngp2_robust_fv_add.out.txt \
height_ngp2_robust_fv_domin.out.txt \
height_ngp2_robust_fv_over_domin.out.txt \
height_ngp2_robust_fv_recess.out.txt \
height_ngp2_robust_int1_fv_2df.out.txt \
height_ngp2_robust_int1_fv_add.out.txt \
height_ngp2_robust_int1_fv_domin.out.txt \
height_ngp2_robust_int1_fv_over_domin.out.txt \
height_ngp2_robust_int1_fv_recess.out.txt \
height_robust_fv_add.out.txt \
height_robust_int1_fv_add.out.txt
cleanfiles_example_bt = logist_add.out.txt \
logist_fv_add.out.txt \
logist_prob_2df.out.txt \
logist_prob_add.out.txt \
logist_prob_domin.out.txt \
logist_prob_fv_2df.out.txt \
logist_prob_fv_add.out.txt \
logist_prob_fv_domin.out.txt \
logist_prob_fv_over_domin.out.txt \
logist_prob_fv_recess.out.txt \
logist_prob_over_domin.out.txt \
logist_prob_recess.out.txt
cleanfiles_example_cox = coxph_dose_add.out.txt \
coxph_dose_fv_add.out.txt \
coxph_prob_2df.out.txt \
coxph_prob_add.out.txt \
coxph_prob_domin.out.txt \
coxph_prob_fv_2df.out.txt \
coxph_prob_fv_add.out.txt \
coxph_prob_fv_domin.out.txt \
coxph_prob_fv_over_domin.out.txt \
coxph_prob_fv_recess.out.txt \
coxph_prob_over_domin.out.txt \
coxph_prob_recess.out.txt
cleanfiles_example_mmscore = mmscore_dose_add.out.txt \
mmscore_dose_fv_add.out.txt \
mmscore_prob_2df.out.txt \
mmscore_prob_add.out.txt \
mmscore_prob_domin.out.txt \
mmscore_prob_fv_2df.out.txt \
mmscore_prob_fv_add.out.txt \
mmscore_prob_fv_domin.out.txt \
mmscore_prob_fv_over_domin.out.txt \
mmscore_prob_fv_recess.out.txt \
mmscore_prob_over_domin.out.txt \
mmscore_prob_recess.out.txt
CLEANFILES = $(cleanfiles_example_qt) $(cleanfiles_example_bt) \
$(cleanfiles_example_cox) $(cleanfiles_example_mmscore)
|