ReadCounts Installation
ReadCounts is available as a self-contained binary package for 64-bit Linux and as Python source. The self-contained binary package is appropriate for most Linux users. The pysam package, plus a variety of common third-party python packages including numpy and scipy must be installed to use ReadCounts in Python source form. See the install instructions below for more details.
Binary Package Installation
Linux
- Unpack the download.
tar xzf ReadCounts-*.Linux-x86_64.tgz cd ReadCounts-*.Linux-x86_64 - See the graphical user interface.
bin/readCounts - Command-line help.
bin/readCounts -h - Run the examples.
cd data ./example.sh
Python Source Installation
- Unpack the downloaded:
tar xzf ReadCounts-*.Python-3.7.tgz cd ReadCounts-*.Python-3.7 - Install the necessary, and optional (if desired), Python 3 packages:
pip3 install -r src/requirements.txt pip3 install -r src/optional_requirements.txt - If
python3is not on your path or is called something elseexport PYTHON3=<path to python3>or
setenv PYTHON3 <path to python3> - See the graphical user interface (if wxPython is installed).
bin/readCounts - Command-line help.
bin/readCounts -h - Run the examples.
cd data ./example.sh