Skip to content

Commit

Permalink
readlink in netvis
Browse files Browse the repository at this point in the history
  • Loading branch information
jiang548 committed May 15, 2022
1 parent d3f04cb commit 86eef91
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion script/netvis_portal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ do
case "$1" in
--Afreq)
Afreq=$2
${cmdprefix}Afreq $Afreq
Afreq=$(readlink -f $Afreq)
${cmdprefix}Afreq $Afreq
shift
;;
--freq | --f)
Expand All @@ -59,10 +60,12 @@ case "$1" in
;;
--coef | --c)
coef=$2
coef=$(readlink -f $coef)
${cmdprefix}coef $coef
shift;;
--vis.genepos | --g)
genepos=$2
genepos=$(readlink -f $genepos)
${cmdprefix}vis.genepos $genepos
shift;;
--id)
Expand Down

0 comments on commit 86eef91

Please sign in to comment.