This is a test version of Biostars. For the public version, visit https://www.biostars.org.
how to unzip Michigan imputation server output compressed folder

Hi, I am facing problem to open the compressed Ziped output folder getting from Michigan Imputation server service.

Please help me for the same.... thanks in advance..............

regards

snp genome r sequence

I am facing problem

What kind of problem? What OS are you using?

2 answers

The imputation server encrypts all zip files by default using the 256-bit key. The standard unzip program does not work, you will need to install 7-Zip program. Once you have the program, type in the following:

7z e file.zip

Then enter your password.

(Just expanding on Molly_K's answer)

If extracting files in a cluster, install 7zip using conda

conda install -c bioconda p7zip

Then extract multiple files (individual chromosomes) using 7zip, and include password in the command

for i in {1..22}; do 7z e chr_$i.zip -pPASSWORD; done

... replacing PASSWORD with the password sent to you by email when imputation job was done.

Log in to answer this question.