You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: settings/settings.conf
+12-7Lines changed: 12 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -2,20 +2,25 @@
2
2
3
3
#set -vo xtrace
4
4
5
+
source scripts/functions.sh
5
6
# Set the path to the directory containing the hg38 and b37 directories
6
-
REFERENCES=/cluster/projects/p172
7
-
8
-
if [[ !-d${REFERENCES%/}/hg38 ||!-d${REFERENCES%/}/b37 ]];then
9
-
echo"Neither the hg38 nor the b37 reference file directories can be found, make sure that the path ($REFERENCES) is correct and that at least one of the directories have been transferred there"
10
-
echo"You can use the ./utilities/Selma-setup.sh script to transfer one or both of the supported reference file directories"
7
+
REFERENCES=/cluster/projects/p11/oskar
8
+
9
+
if [[ -d${REFERENCES%/}/hg38 ]];then
10
+
true
11
+
elif [[ -d${REFERENCES%/}/b37 ]];then
12
+
true
13
+
else
14
+
err "Neither the hg38 nor the b37 reference file directories can be found, make sure that the path ($REFERENCES) is correct and that at least one of the directories have been transferred there"
15
+
inf "You can use the ./utilities/Selma-setup.sh script to transfer one or both of the supported reference file directories"
0 commit comments