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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
#ifndef __PLINK2_MATRIX_CALC_H__
#define __PLINK2_MATRIX_CALC_H__
// This file is part of PLINK 2.0, copyright (C) 2005-2025 Shaun Purcell,
// Christopher Chang.
//
// 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 3 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, see <http://www.gnu.org/licenses/>.
#include "plink2_common.h"
#include "include/SFMT.h"
#ifdef __cplusplus
namespace plink2 {
#endif
FLAGSET_DEF_START()
kfKing0,
kfKingMatrixZs = (1 << 0),
kfKingMatrixBin = (1 << 1),
kfKingMatrixBin4 = (1 << 2),
kfKingMatrixEncodemask = (kfKingMatrixZs | kfKingMatrixBin | kfKingMatrixBin4),
kfKingMatrixSq = (1 << 3),
kfKingMatrixSq0 = (1 << 4),
kfKingMatrixTri = (1 << 5),
kfKingMatrixShapemask = (kfKingMatrixSq0 | kfKingMatrixSq | kfKingMatrixTri),
kfKingTableZs = (1 << 6),
kfKingCounts = (1 << 7),
kfKingRelCheck = (1 << 8),
kfKingCutoffTable = (1 << 9),
kfKingTableRequireXor = (1 << 10),
kfKingColMaybefid = (1 << 11),
kfKingColFid = (1 << 12),
kfKingColId = (1 << 13),
kfKingColMaybesid = (1 << 14),
kfKingColSid = (1 << 15),
kfKingColNsnp = (1 << 16),
kfKingColHethet = (1 << 17),
kfKingColIbs0 = (1 << 18),
kfKingColIbs1 = (1 << 19),
kfKingColKinship = (1 << 20),
kfKingColDefault = (kfKingColMaybefid | kfKingColId | kfKingColMaybesid | kfKingColNsnp | kfKingColHethet | kfKingColIbs0 | kfKingColKinship),
kfKingColAll = ((kfKingColKinship * 2) - kfKingColMaybefid)
FLAGSET_DEF_END(KingFlags);
FLAGSET_DEF_START()
kfGrm0,
kfGrmMatrixZs = (1 << 0),
kfGrmMatrixBin = (1 << 1),
kfGrmMatrixBin4 = (1 << 2),
kfGrmMatrixEncodemask = (kfGrmMatrixZs | kfGrmMatrixBin | kfGrmMatrixBin4),
kfGrmMatrixSq = (1 << 3),
kfGrmMatrixSq0 = (1 << 4),
kfGrmMatrixTri = (1 << 5),
kfGrmMatrixShapemask = (kfGrmMatrixSq0 | kfGrmMatrixSq | kfGrmMatrixTri),
kfGrmListNoGz = (1 << 6),
kfGrmListZs = (1 << 7),
kfGrmListmask = (kfGrmListNoGz | kfGrmListZs),
kfGrmBin = (1 << 8),
kfGrmMeanimpute = (1 << 9),
kfGrmCov = (1 << 10),
kfGrmNoIdHeader = (1 << 11),
kfGrmNoIdHeaderIidOnly = (1 << 12)
FLAGSET_DEF_END(GrmFlags);
FLAGSET_DEF_START()
kfPca0,
kfPcaApprox = (1 << 0),
kfPcaMeanimpute = (1 << 1),
kfPcaAlleleWts = (1 << 2),
kfPcaBiallelicVarWts = (1 << 3),
kfPcaVarZs = (1 << 4),
kfPcaScolMaybefid = (1 << 5),
kfPcaScolFid = (1 << 6),
kfPcaScolMaybesid = (1 << 7),
kfPcaScolSid = (1 << 8),
kfPcaScolDefault = (kfPcaScolMaybefid | kfPcaScolMaybesid),
kfPcaScolAll = ((kfPcaScolSid * 2) - kfPcaScolMaybefid),
kfPcaVcolChrom = (1 << 9),
kfPcaVcolPos = (1 << 10),
kfPcaVcolRef = (1 << 11),
kfPcaVcolAlt1 = (1 << 12),
kfPcaVcolAlt = (1 << 13),
kfPcaVcolMaybeprovref = (1 << 14),
kfPcaVcolProvref = (1 << 15),
kfPcaVcolAx = (1 << 16),
kfPcaVcolMaj = (1 << 17),
kfPcaVcolNonmaj = (1 << 18),
kfPcaVcolDefaultA = (kfPcaVcolChrom | kfPcaVcolRef | kfPcaVcolAlt | kfPcaVcolMaybeprovref),
kfPcaVcolDefaultB = (kfPcaVcolChrom | kfPcaVcolMaybeprovref | kfPcaVcolMaj | kfPcaVcolNonmaj),
kfPcaVcolAll = ((kfPcaVcolNonmaj * 2) - kfPcaVcolChrom)
FLAGSET_DEF_END(PcaFlags);
FLAGSET_DEF_START()
kfScore0,
kfScoreHeaderIgnore = (1 << 0),
kfScoreHeaderRead = (1 << 1),
kfScoreNoMeanimpute = (1 << 2),
kfScoreDominant = (1 << 3),
kfScoreRecessive = (1 << 4),
kfScoreCenter = (1 << 5),
kfScoreVarianceStandardize = (1 << 6),
kfScoreSe = (1 << 7),
kfScoreZs = (1 << 8),
kfScoreIgnoreDupIds = (1 << 9),
kfScoreListVariants = (1 << 10),
kfScoreListVariantsZs = (1 << 11),
kfScoreMultiInput = (1 << 12),
kfScoreQsrHeader = (1 << 13),
kfScoreQsrMin = (1 << 14),
kfScoreColMaybefid = (1 << 15),
kfScoreColFid = (1 << 16),
kfScoreColMaybesid = (1 << 17),
kfScoreColSid = (1 << 18),
kfScoreColPheno1 = (1 << 19),
kfScoreColPhenos = (1 << 20),
kfScoreColNallele = (1 << 21),
kfScoreColDenom = (1 << 22),
kfScoreColDosageSum = (1 << 23),
kfScoreColScoreAvgs = (1 << 24),
kfScoreColScoreSums = (1 << 25),
kfScoreListColDefault = (kfScoreColMaybefid | kfScoreColMaybesid | kfScoreColPhenos | kfScoreColScoreAvgs),
kfScoreColDefault = (kfScoreListColDefault | kfScoreColNallele | kfScoreColDosageSum),
kfScoreColAll = ((kfScoreColScoreSums * 2) - kfScoreColMaybefid)
FLAGSET_DEF_END(ScoreFlags);
FLAGSET_DEF_START()
kfVscore0,
kfVscoreZs = (1 << 0),
kfVscoreSinglePrec = (1 << 1),
kfVscoreBin = (1 << 2),
kfVscoreBin4 = (1 << 3),
kfVscoreColChrom = (1 << 4),
kfVscoreColPos = (1 << 5),
kfVscoreColRef = (1 << 6),
kfVscoreColAlt1 = (1 << 7),
kfVscoreColAlt = (1 << 8),
kfVscoreColMaybeprovref = (1 << 9),
kfVscoreColProvref = (1 << 10),
kfVscoreColAltfreq = (1 << 11),
kfVscoreColNmiss = (1 << 12),
kfVscoreColNobs = (1 << 13),
kfVscoreColDefault = (kfVscoreColChrom | kfVscoreColPos | kfVscoreColRef | kfVscoreColAlt | kfVscoreColMaybeprovref),
kfVscoreColAll = ((kfVscoreColNobs * 2) - kfVscoreColChrom)
FLAGSET_DEF_END(VscoreFlags);
typedef struct ScoreInfoStruct {
NONCOPYABLE(ScoreInfoStruct);
ScoreFlags flags;
uint32_t varid_col_p1;
uint32_t allele_col_p1;
char* input_fname;
RangeList input_col_idx_range_list;
// --q-score-range
char* qsr_range_fname;
char* qsr_data_fname;
uint32_t qsr_varid_col_p1;
uint32_t qsr_val_col_p1;
} ScoreInfo;
FLAGSET_DEF_START()
kfPhenoSvd0,
kfPhenoSvdForce = (1 << 0),
kfPhenoSvdScolMaybefid = (1 << 1),
kfPhenoSvdScolFid = (1 << 2),
kfPhenoSvdScolMaybesid = (1 << 3),
kfPhenoSvdScolSid = (1 << 4),
kfPhenoSvdScolDefault = (kfPhenoSvdScolMaybefid | kfPhenoSvdScolMaybesid),
kfPhenoSvdScolAll = ((kfPhenoSvdScolSid * 2) - kfPhenoSvdScolMaybefid),
kfPhenoSvdPcolId = (1 << 5),
kfPhenoSvdPcolSv = (1 << 6),
kfPhenoSvdPcolDefault = (kfPhenoSvdPcolId | kfPhenoSvdPcolSv),
kfPhenoSvdPcolAll = ((kfPhenoSvdPcolSv * 2) - kfPhenoSvdPcolId)
FLAGSET_DEF_END(PhenoSvdFlags);
typedef struct PhenoSvdInfoStruct {
NONCOPYABLE(PhenoSvdInfoStruct);
PhenoSvdFlags flags;
uint32_t ct;
double min_variance_explained;
} PhenoSvdInfo;
void InitScore(ScoreInfo* score_info_ptr);
void CleanupScore(ScoreInfo* score_info_ptr);
void InitPhenoSvd(PhenoSvdInfo* pheno_svd_info_ptr);
CONSTI32(kMaxPc, 8000);
PglErr KingCutoffBatchBinary(const SampleIdInfo* siip, uint32_t raw_sample_ct, double king_cutoff, uintptr_t* sample_include, char* king_cutoff_fprefix, uint32_t* sample_ct_ptr);
PglErr KingCutoffBatchTable(const SampleIdInfo* siip, const char* kin0_fname, uint32_t raw_sample_ct, double king_cutoff, uintptr_t* sample_include, uint32_t* sample_ct_ptr);
PglErr CalcKing(const SampleIdInfo* siip, const uintptr_t* variant_include_orig, const ChrInfo* cip, uint32_t raw_sample_ct, uint32_t orig_sample_ct, uint32_t raw_variant_ct, uint32_t variant_ct, double king_cutoff, double king_table_filter, KingFlags king_flags, uint32_t parallel_idx, uint32_t parallel_tot, uint32_t max_thread_ct, uintptr_t pgr_alloc_cacheline_ct, PgenFileInfo* pgfip, PgenReader* simple_pgrp, uintptr_t* sample_include, uint32_t* sample_ct_ptr, char* outname, char* outname_end);
PglErr CalcKingTableSubset(const uintptr_t* orig_sample_include, const SampleIdInfo* siip, const uintptr_t* variant_include, const ChrInfo* cip, const char* subset_fname, const char* require_fnames, uint32_t raw_sample_ct, uint32_t orig_sample_ct, uint32_t raw_variant_ct, uint32_t variant_ct, double king_table_filter, double king_table_subset_thresh, uint32_t rel_check, KingFlags king_flags, uint32_t parallel_idx, uint32_t parallel_tot, uint32_t max_thread_ct, PgenReader* simple_pgrp, char* outname, char* outname_end);
PglErr CalcGrm(const uintptr_t* orig_sample_include, const SampleIdInfo* siip, const uintptr_t* variant_include, const ChrInfo* cip, const uintptr_t* allele_idx_offsets, const double* allele_freqs, uint32_t raw_sample_ct, uint32_t sample_ct, uint32_t raw_variant_ct, uint32_t variant_ct, uint32_t max_allele_ct, GrmFlags grm_flags, uint32_t parallel_idx, uint32_t parallel_tot, uint32_t max_thread_ct, PgenReader* simple_pgrp, char* outname, char* outname_end, double** grm_ptr);
#ifndef NOLAPACK
PglErr CalcPca(const uintptr_t* sample_include, const SampleIdInfo* siip, const uintptr_t* variant_include, const ChrInfo* cip, const uint32_t* variant_bps, const char* const* variant_ids, const uintptr_t* allele_idx_offsets, const char* const* allele_storage, const AlleleCode* maj_alleles, const double* allele_freqs, uint32_t raw_sample_ct, uintptr_t pca_sample_ct, uint32_t raw_variant_ct, uint32_t variant_ct, uint32_t max_allele_ct, uint32_t max_allele_slen, uint32_t pc_ct, PcaFlags pca_flags, uint32_t max_thread_ct, PgenReader* simple_pgrp, sfmt_t* sfmtp, double* grm, char* outname, char* outname_end);
#endif
PglErr ScoreReport(const uintptr_t* sample_include, const SampleIdInfo* siip, const uintptr_t* sex_nm, const uintptr_t* sex_male, const PhenoCol* pheno_cols, const char* pheno_names, const uintptr_t* variant_include, const ChrInfo* cip, const char* const* variant_ids, const uintptr_t* allele_idx_offsets, const char* const* allele_storage, const double* allele_freqs, const ScoreInfo* score_info_ptr, const char* output_missing_pheno, uint32_t raw_sample_ct, uint32_t sample_ct, uint32_t nosex_ct, uint32_t pheno_ct, uintptr_t max_pheno_name_blen, uint32_t raw_variant_ct, uint32_t variant_ct, uint32_t max_variant_id_slen, uint32_t xchr_model, uint32_t max_thread_ct, PgenReader* simple_pgrp, char* outname, char* outname_end);
PglErr Vscore(const uintptr_t* variant_include, const ChrInfo* cip, const uint32_t* variant_bps, const char* const* variant_ids, const uintptr_t* allele_idx_offsets, const char* const* allele_storage, const uintptr_t* sample_include, const SampleIdInfo* siip, const uintptr_t* sex_male, const double* allele_freqs, const char* in_fname, const RangeList* col_idx_range_listp, uint32_t raw_variant_ct, uint32_t variant_ct, uint32_t raw_sample_ct, uint32_t sample_ct, uint32_t nosex_ct, uint32_t max_allele_slen, VscoreFlags flags, uint32_t xchr_model, uint32_t max_thread_ct, uintptr_t pgr_alloc_cacheline_ct, PgenFileInfo* pgfip, char* outname, char* outname_end);
#ifndef NOLAPACK
PglErr PhenoSvd(const PhenoSvdInfo* psip, const uintptr_t* sample_include, const SampleIdInfo* siip, uint32_t raw_sample_ct, uint32_t orig_sample_ct, uint32_t max_thread_ct, char** pheno_names_ptr, uint32_t* pheno_ct_ptr, uintptr_t* max_pheno_name_blen_ptr, PhenoCol* pheno_cols, char* outname, char* outname_end);
#endif
#ifdef __cplusplus
} // namespace plink2
#endif
#endif // __PLINK2_MATRIX_CALC_H__
|