-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_workspace.sh
More file actions
33 lines (27 loc) · 1.15 KB
/
setup_workspace.sh
File metadata and controls
33 lines (27 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
#
# Automatically sets up the working directory and structure
echo "====================================================="
echo "ECCFP Working Directory Setup Script"
echo "====================================================="
# Create the main working directory
echo "Creating eccfpws working directory..."
mkdir -p eccfpws
# Create the subdirectory structure
cd eccfpws
mkdir -p RawData Reference Software
echo "Directory structure created:"
echo " eccfpws/ - Main working directory"
echo " ├── RawData/ - Raw sequencing data"
echo " ├── Reference/ - Reference genome"
echo " └── Software/ - Software tools"
# Create symbolic links for example data (optional)
echo "Creating test data links..."
ln -sf ../test_data/fastq/SRR18143376_1k.fastq RawData/test_sample.fastq
ln -sf ../test_data/reference/GRCh38_chr21.fasta Reference/test_reference.fasta
echo "====================================================="
echo "Working directory setup complete!"
echo "Next steps:"
echo "1. Install software: cd scripts; bash install_all.sh"
echo "2. Run test: cd script; bash run_test.sh"
echo "====================================================="