Hi!
I'm using SPrediXcan to predict associations between gene expression and a disease.
I'm using Elastic Net models.
Everything seems to be going well. For each model until now, more than 70% of the model's snps were used. However, this message keeps showing up for most of the genes (not all):
INFO - Gene ENSG00000283654.1 has covariance close to singular
I'll be very gratefull if someone can tell me how should I interpret this message and what does it mean for my results.
These are the parameters I used to run SPrediXcan:
# Path to SPredixcan executable
SPrediXcan="/home/koala/biotools/MetaXcan/software/SPrediXcan.py"
python3 "$SPrediXcan" \
--model_db_path ${model} \
--covariance ${covariance_path} \
--gwas_file ${gwas} \
--gwas_file_pattern "*.txt.gz" \
--snp_column rsID \
--effect_allele_column Allele2 \
--non_effect_allele_column Allele1 \
--beta_column BETA \
--pvalue_column PVAL \
--position_column BP \
--chromosome_column CHR \
--freq_column AF \
--se_column SE \
--zscore_column SCORE \
--keep_non_rsid \
--verbosity 1 \
--additional_output \
--output_file ${output_path}
Thank you so much in advance for your kind help!