gitextract_u1zhxkiu/ ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── docker-image.yml │ ├── manual.yml │ └── test.yml ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── Dockerfile_mkl ├── Dockerfile_openblas ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_LOG.md ├── VERSION ├── docs/ │ ├── cinder/ │ │ ├── 404.html │ │ ├── __init__.py │ │ ├── base.html │ │ ├── content.html │ │ ├── css/ │ │ │ ├── base.css │ │ │ ├── bootstrap-custom.css │ │ │ ├── cinder.css │ │ │ └── highlight.css │ │ ├── js/ │ │ │ └── base.js │ │ ├── keyboard-modal.html │ │ ├── main.html │ │ ├── mkdocs_theme.yml │ │ ├── nav-sub.html │ │ ├── nav.html │ │ ├── search-modal.html │ │ └── toc.html │ ├── docs/ │ │ ├── custom/ │ │ │ └── style.css │ │ ├── faq.md │ │ ├── index.md │ │ ├── install.md │ │ ├── options.md │ │ ├── overview.md │ │ ├── performance.md │ │ └── recommendations.md │ ├── mkdocs.yml │ ├── refs.bib │ └── site/ │ ├── css/ │ │ ├── base.css │ │ ├── bootstrap-custom.css │ │ ├── cinder.css │ │ └── highlight.css │ ├── custom/ │ │ └── style.css │ ├── faq/ │ │ └── index.html │ ├── index.html │ ├── install/ │ │ └── index.html │ ├── js/ │ │ └── base.js │ ├── options/ │ │ └── index.html │ ├── overview/ │ │ └── index.html │ ├── performance/ │ │ └── index.html │ ├── recommendations/ │ │ └── index.html │ ├── search/ │ │ ├── lunr.js │ │ ├── main.js │ │ ├── search_index.json │ │ └── worker.js │ └── sitemap.xml ├── example/ │ ├── covariates.txt │ ├── covariates_wBin.txt │ ├── example.bed │ ├── example.bgen │ ├── example.bgen.bgi │ ├── example.bim │ ├── example.fam │ ├── example.pgen │ ├── example.psam │ ├── example.pvar │ ├── example.test_bin_out_firth_Y1.regenie │ ├── example_3chr.annotations │ ├── example_3chr.annotationsV2 │ ├── example_3chr.bed │ ├── example_3chr.bgen │ ├── example_3chr.bgen.bgi │ ├── example_3chr.bim │ ├── example_3chr.fam │ ├── example_3chr.joint_setlist │ ├── example_3chr.masks │ ├── example_3chr.sample │ ├── example_3chr.setlist │ ├── example_3chr.write_sets │ ├── example_3chr_masks.bed │ ├── example_3chr_masks.bim │ ├── example_3chr_masks.fam │ ├── example_3chr_zstd.bgen │ ├── fid_iid_to_remove.txt │ ├── phenotype.txt │ ├── phenotype_bin.txt │ ├── phenotype_bin_wNA.txt │ ├── snplist_rm.txt │ └── test_bin_out_firth_Y1.regenie ├── external_libs/ │ ├── LBFGSpp/ │ │ ├── AUTHORS.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── include/ │ │ ├── LBFGS.h │ │ ├── LBFGSB.h │ │ └── LBFGSpp/ │ │ ├── BFGSMat.h │ │ ├── BKLDLT.h │ │ ├── Cauchy.h │ │ ├── LineSearchBacktracking.h │ │ ├── LineSearchBracketing.h │ │ ├── LineSearchMoreThuente.h │ │ ├── LineSearchNocedalWright.h │ │ ├── Param.h │ │ └── SubspaceMin.h │ ├── cxxopts/ │ │ ├── LICENSE │ │ └── include/ │ │ └── cxxopts.hpp │ ├── eigen-3.4.0/ │ │ └── Eigen/ │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src/ │ │ ├── Cholesky/ │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport/ │ │ │ └── CholmodSupport.h │ │ ├── Core/ │ │ │ ├── ArithmeticSequence.h │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── IndexedView.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PartialReduxEvaluator.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── Reshaped.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── StlIterators.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch/ │ │ │ │ ├── AVX/ │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512/ │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AltiVec/ │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MatrixProduct.h │ │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA/ │ │ │ │ │ └── Complex.h │ │ │ │ ├── Default/ │ │ │ │ │ ├── BFloat16.h │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── Settings.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── GPU/ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── HIP/ │ │ │ │ │ └── hcc/ │ │ │ │ │ └── math_constants.h │ │ │ │ ├── MSA/ │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── NEON/ │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SSE/ │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SVE/ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SYCL/ │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector/ │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── functors/ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products/ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util/ │ │ │ ├── BlasUtil.h │ │ │ ├── ConfigureVectorization.h │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── IndexedViewHelper.h │ │ │ ├── IntegralConstant.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── ReshapedHelper.h │ │ │ ├── StaticAssert.h │ │ │ ├── SymbolicIndex.h │ │ │ └── XprHelper.h │ │ ├── Eigenvalues/ │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ ├── Geometry/ │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch/ │ │ │ └── Geometry_SIMD.h │ │ ├── Householder/ │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers/ │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ ├── Jacobi/ │ │ │ └── Jacobi.h │ │ ├── KLUSupport/ │ │ │ └── KLUSupport.h │ │ ├── LU/ │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch/ │ │ │ └── InverseSize4.h │ │ ├── MetisSupport/ │ │ │ └── MetisSupport.h │ │ ├── OrderingMethods/ │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ ├── PaStiXSupport/ │ │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport/ │ │ │ └── PardisoSupport.h │ │ ├── QR/ │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ ├── SPQRSupport/ │ │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD/ │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky/ │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore/ │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ ├── SparseLU/ │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ ├── SparseQR/ │ │ │ └── SparseQR.h │ │ ├── StlSupport/ │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ ├── SuperLUSupport/ │ │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport/ │ │ │ └── UmfPackSupport.h │ │ ├── misc/ │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ └── plugins/ │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── IndexedViewMethods.h │ │ ├── MatrixCwiseBinaryOps.h │ │ ├── MatrixCwiseUnaryOps.h │ │ └── ReshapedMethods.h │ ├── mvtnorm/ │ │ ├── Makefile │ │ ├── mvt.f │ │ ├── mvtnorm.cpp │ │ ├── mvtnorm.h │ │ └── randomF77.c │ ├── pgenlib/ │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── include/ │ │ │ ├── pgenlib_misc.cc │ │ │ ├── pgenlib_misc.h │ │ │ ├── pgenlib_read.cc │ │ │ ├── pgenlib_read.h │ │ │ ├── plink2_base.cc │ │ │ ├── plink2_base.h │ │ │ ├── plink2_bits.cc │ │ │ └── plink2_bits.h │ │ ├── pgenlib_ffi_support.cpp │ │ ├── pgenlib_ffi_support.h │ │ ├── pgenlibr.cpp │ │ ├── pgenlibr.h │ │ ├── pvar_ffi_support.cc │ │ ├── pvar_ffi_support.h │ │ └── simde/ │ │ ├── check.h │ │ ├── debug-trap.h │ │ ├── hedley.h │ │ ├── simde-aes.h │ │ ├── simde-align.h │ │ ├── simde-arch.h │ │ ├── simde-bf16.h │ │ ├── simde-common.h │ │ ├── simde-complex.h │ │ ├── simde-constify.h │ │ ├── simde-detect-clang.h │ │ ├── simde-diagnostic.h │ │ ├── simde-f16.h │ │ ├── simde-features.h │ │ ├── simde-math.h │ │ └── x86/ │ │ ├── aes.h │ │ ├── avx.h │ │ ├── avx2.h │ │ ├── clmul.h │ │ ├── f16c.h │ │ ├── fma.h │ │ ├── gfni.h │ │ ├── mmx.h │ │ ├── sse.h │ │ ├── sse2.h │ │ ├── sse3.h │ │ ├── sse4.1.h │ │ ├── sse4.2.h │ │ ├── ssse3.h │ │ ├── svml.h │ │ └── xop.h │ ├── qf/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── qfc.cpp │ │ └── qfc.h │ ├── quadpack/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── d1mach.f │ │ ├── dqags.f │ │ ├── dqagse.f │ │ ├── dqelg.f │ │ ├── dqk21.f │ │ └── dqpsrt.f │ └── remeta/ │ ├── Makefile │ ├── README.md │ ├── bgz_writer.cpp │ ├── bgz_writer.hpp │ ├── regenie_ld_matrix_writer.cpp │ └── regenie_ld_matrix_writer.hpp ├── scripts/ │ ├── parseLD.r │ ├── regenie_docker.sh │ ├── regenie_paper/ │ │ ├── README.md │ │ └── scripts/ │ │ ├── manP.colors │ │ ├── master.sh │ │ ├── mk_plots_bt.r │ │ ├── mk_plots_qt.r │ │ ├── mk_sparseGRM.r │ │ ├── prep_files.sh │ │ ├── run_methods.r │ │ └── std_ffuns.r │ └── rplot ├── src/ │ ├── Data.cpp │ ├── Data.hpp │ ├── Files.cpp │ ├── Files.hpp │ ├── Geno.cpp │ ├── Geno.hpp │ ├── HLM.cpp │ ├── HLM.hpp │ ├── Interaction.cpp │ ├── Interaction.hpp │ ├── Joint_Tests.cpp │ ├── Joint_Tests.hpp │ ├── MCC.cpp │ ├── MCC.hpp │ ├── Masks.cpp │ ├── Masks.hpp │ ├── MultiTrait_Tests.cpp │ ├── MultiTrait_Tests.hpp │ ├── NNLS.cpp │ ├── NNLS.hpp │ ├── Ordinal.cpp │ ├── Ordinal.hpp │ ├── Pheno.cpp │ ├── Pheno.hpp │ ├── Regenie.cpp │ ├── Regenie.hpp │ ├── SKAT.cpp │ ├── SKAT.hpp │ ├── Step1_Models.cpp │ ├── Step1_Models.hpp │ ├── Step2_Models.cpp │ ├── Step2_Models.hpp │ ├── bgen_to_vcf.hpp │ ├── cox_firth.cpp │ ├── cox_firth.hpp │ ├── cox_ridge.cpp │ ├── cox_ridge.hpp │ ├── cox_score.cpp │ ├── cox_score.hpp │ ├── survival_data.cpp │ └── survival_data.hpp └── test/ ├── check_na.sh ├── test_bash.sh ├── test_conda.sh ├── test_docker.sh └── test_singularity.sh