Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Add repo run script (2/N) #63

Merged
merged 3 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .github/workflows/.DS_Store
Binary file not shown.
36 changes: 36 additions & 0 deletions scripts/run_analysis_modules.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/sh

set -e
set -o pipefail

# Set the working directory to the directory of this file
cd "$(dirname "${BASH_SOURCE[0]}")"

# Get base directory of project
cd ..
BASEDIR="$(pwd)"
cd -

analyses_dir="$BASEDIR/analyses"

# Run add-histologies analysis module
echo "Run add-histologies"
cd ${analyses_dir}/add-histologies
bash run_module.sh

# Run demo-clin-stats analysis module
echo "Run demo-clin-stats"
cd ${analyses_dir}/demo-clin-stats
bash run_module.sh

# Run survival analysis module
echo "Run survival"
cd ${analyses_dir}/survival
bash run_module.sh

# Run BRAF breakpoint analysis module
echo "Run BRAF fusion breakpoint analysis"
cd ${analyses_dir}/braf-fusions
bash run_module.sh

printf "\nDone running analysis modules!\n"