HaohanWang / thePrecisionLasso

implementation for Precision Lasso: accounting for correlations and linear dependencies in high-dimensional genomic data
https://academic.oup.com/bioinformatics/article/35/7/1181/5089232
MIT License
12 stars 4 forks source link

Printing error under utilities/cg.py #5

Open gbland0725 opened 2 years ago

gbland0725 commented 2 years ago

Thanks for the package! Trying to implement in my data file right now. There's one error in the cg.py. You forgot to put in the parenthesis for print statement. Please change it from:

print resi_prev

to

print(resi_prev)

Thanks! Garret