Entering edit mode
6.8 years ago
rahman.samir33
•
0
Hi everyone, my name is Samir. I am a postdoc at Mount Sinai. I am very new to genomics and computational biology. I am trying to install HiC Pro, but having difficulty doing so. I downloaded the HiC-Pro-2.10.0.tar.gz file and unzipped it. I ran the following code in the terminal as suggested and received an error.
tar -zxvf HiC-Pro-2.10.0.tar.gz
tar: Error opening archive: Failed to open 'HiC-Pro-2.10.0.tar.gz'
I installed all the dependencies via homebrew, and I have edited the config-install.txt file as shown below:
PREFIX = /usr/local/Cellar
BOWTIE2_PATH = /usr/local/Cellar/bowtie2/2.3.4
SAMTOOLS_PATH = /usr/local/Cellar/samtools/1.7
R_PATH = /usr/local/Cellar/r/3.4.3_1
PYTHON_PATH = /usr/local/Cellar/python/2.7.14_2
CLUSTER_SYS = SLURM
I would really appreciate your help. Thanks.
If that file is indeed in the same directory where you are running this from then you may have a corrupt file. What happens if you try
tar -zxvf ./HiC-Pro-2.10.0.tar.gz
the error has nothing to do with HiC Pro, try to
cd
into directory of HiC-Pro before runtar -zxvf HiC-Pro-2.10.0.tar.gz
Hi, thanks for your replies. I realized I was in the wrong directory, and have actually advanced a bit. Here is the error message I receive now:
I have downloaded bx-python-master.zip and unzipped it. How and where do I install bx-python?
You should install using the
pip
orconda
method described onbx-python
page.Please use
ADD REPLY/ADD COMMENT
when responding to existing posts to keep threads logically organized.When I run "pip install bx-python", I get this message:
When I run
conda install -c bioconda bx-python,
I get this message:What OS are you installing on? Is this your personal machine or a shared cluster/server? If latter then you may want to work with the sys admins to see if they can install this software for you.
MacOS. This is my laptop.
You can install conda or pip for macOS in that case.
Hey, thank you so much! I dowloaded Anaconda and was able to install the missing Python libraries. This is the message I receive now:
I then ran "make install", and HiC-Pro was installed. :D