-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d29986a
commit 9935f45
Showing
4 changed files
with
43 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
#Keywords: NAME, RA, DEC, PMRA, EPMRA, PMDEC, EPMDEC, RV, ERV, PLX, EPLX, IP | ||
export PATH="/usr/local/anaconda3/bin:$PATH" | ||
export HOME="/home/ipm/banyan/banyansigma/answer" | ||
wwwdir='/home/ipm/banyan' | ||
python3 -c "import sys; sys.path.append('$wwwdir'); from banyan_sigma_wrapper import banyan_sigma_wrapper; void = banyan_sigma_wrapper(name='$1',ra='$2',dec='$3',pmra='$4',epmra='$5',pmdec='$6',epmdec='$7',rv='$8',erv='$9',plx='${10}',eplx='${11}',ip='${12}')" | ||
echo "Success running python_launch_banyansigma.bash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
export PATH="/usr/local/anaconda3/bin:$PATH" | ||
export HOME="/home/ipm/banyan/banyansigma/answer" | ||
wwwdir='/home/ipm/banyan' | ||
python3 -c "import sys; sys.path.append('$wwwdir'); from name_resolver_webtool import name_resolver_webtool; void = name_resolver_webtool(name='$1')" | ||
echo "Success running python_resolve_name.bash" |