Documentation
Comprehensive guide to the RNAlytics project, providing detailed insights into our bioinformatics pipeline and analysis workflows.
Last updated: March 2024
For researchers & developers
Project Setup
Prerequisites
- ๐Python 3.8+
- ๐ปNode.js 18+
- ๐Git
Installation
# Clone the repository
git clone https://github.com/aryehky/RNAlytics.git
# Install Python dependencies
python -m venv venv
source venv/bin/activate # or 'venv\Scripts\activate' on Windows
pip install -r requirements.txt
# Install Node.js dependencies
npm install
Project Structure
project-root/
โโโ app/ # Next.js pages
โโโ components/ # React components
โโโ data/ # Data files
โ โโโ raw/ # Raw datasets
โ โโโ processed/ # Processed data
โโโ notebooks/ # Jupyter notebooks
โโโ src/ # Source code
โ โโโ api/ # Backend API
โ โโโ utils/ # Utility functions
โโโ tests/ # Test files