Skip to content

Commit

Permalink
chore: Merge branch 'script-paths' into docker
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Feb 7, 2024
2 parents 78a7d93 + ed58bbc commit 09a15b4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions RECAP_MACS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
VERSION="1.0.2"
# Provide a variable for the location of this and other scripts
SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
REMIX_PATH=$(find ~/ -type f -name "RECAP_Re-Mix.sh" | head -n 1)
PERL_PATH=$(find ~/ -type f -name "RECAP.pl" | head -n 1)
REMIX_PATH=${SCRIPT_PATH}/RECAP_Re-Mix.sh
PERL_PATH=${SCRIPT_PATH}/RECAP.pl
# Text display commands
bold=$(tput bold)
normal=$(tput sgr0)
Expand Down
6 changes: 3 additions & 3 deletions RECAP_SICER.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
VERSION="1.0.2"
# Provide a variable for the location of this and other scripts
SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
REMIX_PATH=$(find ~/ -type f -name "RECAP_Re-Mix.sh" | head -n 1)
PERL_PATH=$(find ~/ -type f -name "RECAP.pl" | head -n 1)
SICER_PATH=$(find ~/ -type f -name "SICER.sh" | head -n 1)
REMIX_PATH=${SCRIPT_PATH}/RECAP_Re-Mix.sh
PERL_PATH=${SCRIPT_PATH}/RECAP.pl
SICER_PATH=$(which SICER.sh)
# Text display commands
bold=$(tput bold)
normal=$(tput sgr0)
Expand Down
4 changes: 2 additions & 2 deletions RECAP_diffReps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
VERSION="1.0.2"
# Provide a variable for the location of this and other scripts
SCRIPT_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
REMIX_PATH=$(find ~/ -type f -name "RECAP_Re-Mix.sh" | head -n 1)
PERL_PATH=$(find ~/ -type f -name "RECAP.pl" | head -n 1)
REMIX_PATH=${SCRIPT_PATH}/RECAP_Re-Mix.sh
PERL_PATH=${SCRIPT_PATH}/RECAP.pl
# Text display commands
bold=$(tput bold)
normal=$(tput sgr0)
Expand Down

0 comments on commit 09a15b4

Please sign in to comment.