Add BioEmu Nextflow pipeline implementation

This commit is contained in:
2025-03-04 09:38:55 -08:00
commit 2cfbf64e92
12 changed files with 565 additions and 0 deletions

21
setup.sh Normal file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Set up directory structure for BioEmu workflow
BASE_DIR="/mnt/OmicNAS/private/old/olamide/bioemu"
# Create necessary directories
mkdir -p ${BASE_DIR}/input
mkdir -p ${BASE_DIR}/output
mkdir -p ${BASE_DIR}/cache
mkdir -p ${BASE_DIR}/scripts
# Copy FASTA files
cp villin_headpiece.fasta ${BASE_DIR}/input/
cp trp_cage.fasta ${BASE_DIR}/input/
# Copy scripts
cp calculate_gibbs.py ${BASE_DIR}/scripts/
chmod +x ${BASE_DIR}/scripts/calculate_gibbs.py
echo "Directory structure set up at ${BASE_DIR}"
echo "FASTA files and scripts copied"