cat < README.md
This repository contains a universal automation script to initialize a standardized, nf-core aligned folder structure for bioinformatics pipelines (specifically optimized for Single-Cell Analysis).
Open your terminal and run this command from anywhere to create a new project. Replace `path/to/project` with your desired location:
```bash curl -s https://raw.githubusercontent.com/MJBioInfo/nf-templates/main/folder_creation.sh | bash -s -- path/to/project ```
The script automatically generates:
- workflows/: Main pipeline logic (`main.nf`).
- conf/data_params/: Dedicated space for your `dataset.yaml` files.
- data/: Folders for raw and reference data (ignored by Git).
- results/: Organized output structure for Seurat/AnnData objects.
- Configs: Pre-configured `.gitignore` and `nextflow.config`.
- Initialize: Run the curl command above.
- Configure: Edit `conf/data_params/dataset_v1.yaml` with your data paths.
- Execute: ```bash nextflow run workflows/main.nf -params-file conf/data_params/dataset_v1.yaml ```
Status Badges: Portable Automation Single-Cell EOF