-
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.
Comment a print statement in macroNode, which was put in after 2to3.
- Loading branch information
Showing
63 changed files
with
1,020 additions
and
419 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
*.so | ||
*.o | ||
*.DS_Store | ||
VERSION | ||
build/ | ||
/node/ | ||
/local/ | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env python # DEV | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2014 Dignity Health | ||
# | ||
|
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,42 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2014 Dignity Health | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Lesser General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# NO CLINICAL USE. THE SOFTWARE IS NOT INTENDED FOR COMMERCIAL PURPOSES | ||
# AND SHOULD BE USED ONLY FOR NON-COMMERCIAL RESEARCH PURPOSES. THE | ||
# SOFTWARE MAY NOT IN ANY EVENT BE USED FOR ANY CLINICAL OR DIAGNOSTIC | ||
# PURPOSES. YOU ACKNOWLEDGE AND AGREE THAT THE SOFTWARE IS NOT INTENDED FOR | ||
# USE IN ANY HIGH RISK OR STRICT LIABILITY ACTIVITY, INCLUDING BUT NOT | ||
# LIMITED TO LIFE SUPPORT OR EMERGENCY MEDICAL OPERATIONS OR USES. LICENSOR | ||
# MAKES NO WARRANTY AND HAS NOR LIABILITY ARISING FROM ANY USE OF THE | ||
# SOFTWARE IN ANY HIGH RISK OR STRICT LIABILITY ACTIVITIES. | ||
|
||
import sys, os | ||
|
||
# Check for Anaconda PREFIX, or assume that THIS file location is the CWD. | ||
GPI_PREFIX = '/opt/anaconda1anaconda2anaconda3' # ANACONDA | ||
if GPI_PREFIX == '/opt/'+''.join(['anaconda'+str(i) for i in range(1,4)]): | ||
GPI_PREFIX, _ = os.path.split(os.path.dirname(os.path.realpath(__file__))) | ||
|
||
GPI_LIB_DIR = os.path.join(GPI_PREFIX, 'lib') | ||
if GPI_LIB_DIR not in sys.path: | ||
sys.path.insert(0, GPI_LIB_DIR) | ||
|
||
# gpi | ||
from gpi import update | ||
|
||
if __name__ == '__main__': | ||
update.update() |
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,35 @@ | ||
name: py3k | ||
dependencies: | ||
- astyle=2.05.1=0 | ||
- eigen=3.2.5=0 | ||
- fftw=3.3.4=0 | ||
- freetype=2.5.2=2 | ||
- gpi=0.6.0=py3k | ||
- h5py=2.5.0=np19py35_3 | ||
- hdf5=1.8.15.1=1 | ||
- libpng=1.6.17=0 | ||
- matplotlib=1.4.3=np19py35_3 | ||
- numpy=1.9.2=py35_0 | ||
- openssl=1.0.1k=1 | ||
- pip=7.1.2=py35_0 | ||
- psutil=3.2.0=py35_0 | ||
- pyopengl=3.1.1a1=np19py35_0 | ||
- pyparsing=2.0.3=py35_0 | ||
- pyqt=4.11.3=py35_0 | ||
- python=3.5.0=0 | ||
- python-dateutil=2.4.2=py35_0 | ||
- pytz=2015.4=py35_0 | ||
- qt=4.8.6=3 | ||
- readline=6.2=2 | ||
- scipy=0.16.0=np19py35_1 | ||
- setuptools=18.1=py35_0 | ||
- sip=4.16.5=py35_0 | ||
- six=1.9.0=py35_0 | ||
- sqlite=3.8.4.1=1 | ||
- tk=8.5.18=0 | ||
- wheel=0.24.0=py35_0 | ||
- xz=5.0.5=0 | ||
- zlib=1.2.8=0 | ||
- pip: | ||
- qimage2ndarray==1.5 | ||
|
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
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
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
Binary file not shown.
Binary file modified
BIN
+4.12 KB
(130%)
launch/GPI.app/Contents/Resources/German.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-88 Bytes
(99%)
launch/GPI.app/Contents/Resources/Italian.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
+3.92 KB
(130%)
launch/GPI.app/Contents/Resources/ar.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-93 Bytes
(99%)
launch/GPI.app/Contents/Resources/ca.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-84 Bytes
(99%)
launch/GPI.app/Contents/Resources/da.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-92 Bytes
(99%)
launch/GPI.app/Contents/Resources/el.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-140 Bytes
(99%)
launch/GPI.app/Contents/Resources/he.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-139 Bytes
(99%)
launch/GPI.app/Contents/Resources/hr.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-110 Bytes
(99%)
launch/GPI.app/Contents/Resources/hu.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-110 Bytes
(99%)
launch/GPI.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-96 Bytes
(99%)
launch/GPI.app/Contents/Resources/ro.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-94 Bytes
(99%)
launch/GPI.app/Contents/Resources/ru.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-110 Bytes
(99%)
launch/GPI.app/Contents/Resources/sk.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-151 Bytes
(99%)
launch/GPI.app/Contents/Resources/th.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-158 Bytes
(99%)
launch/GPI.app/Contents/Resources/tr.lproj/ApplicationStub.nib
Binary file not shown.
Binary file modified
BIN
-116 Bytes
(99%)
launch/GPI.app/Contents/Resources/uk.lproj/ApplicationStub.nib
Binary file not shown.
Oops, something went wrong.