[fix] make all scripts executable

new script for pilot data base reassessmant
This commit is contained in:
Sebastian Wehling-Benatelli 2016-05-11 12:01:10 +02:00
parent f8807a7ea6
commit f7e1247060
5 changed files with 50 additions and 5 deletions

0
scripts/pylot-noisewindow.py Normal file → Executable file
View File

View File

@ -0,0 +1,33 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse
from pylot.core.util.version import get_git_version as _getVersionString
from pylot.core.io.phases import reassess_pilot_db
__version__ = _getVersionString()
__author__ = 'S. Wehling-Benatelli'
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='reassess old PILOT event data base in terms of consistent '
'automatic uncertainty estimation',
epilog='Script written by {author} belonging to PyLoT version'
' {version}\n'.format(author=__author__,
version=__version__)
)
parser.add_argument(
'dbroot', type=str, help='specifies the root directory (in '
'most cases PILOT database folder)'
)
parser.add_argument(
'--output', '-o', type=str, help='path to the output directory', dest='output'
)
parser.add_argument(
'--parameterfile', '-p', type=str, help='full path to the parameterfile', dest='parfile'
)
args = parser.parse_args()
reassess_pilot_db(args.dbroot, args.output, args.parfile)

22
scripts/pylot-reasses-pilot-event.py Normal file → Executable file
View File

@ -7,18 +7,30 @@ from pylot.core.util.version import get_git_version as _getVersionString
from pylot.core.io.phases import reassess_pilot_event from pylot.core.io.phases import reassess_pilot_event
__version__ = _getVersionString() __version__ = _getVersionString()
__author__ = 'sebastianw' __author__ = 'S. Wehling-Benatelli'
if __name__ == '__main__': if __name__ == '__main__':
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser(
description='reassess old PILOT event data in terms of consistent '
'automatic uncertainty estimation',
epilog='Script written by {author} belonging to PyLoT version'
' {version}\n'.format(author=__author__,
version=__version__)
)
parser.add_argument( parser.add_argument(
'--directory', '-d', type=str, help='specifies the root directory (in ' 'dbroot', type=str, help='specifies the root directory (in '
'most cases PILOT database folder)' 'most cases PILOT database folder)'
) )
parser.add_argument( parser.add_argument(
'--eventid', '-i', type=str, help='PILOT event identifier' 'id', type=str, help='PILOT event identifier'
)
parser.add_argument(
'--output', '-o', type=str, help='path to the output directory', dest='output'
)
parser.add_argument(
'--parameterfile', '-p', type=str, help='full path to the parameterfile', dest='parfile'
) )
args = parser.parse_args() args = parser.parse_args()
reassess_pilot_event(args.dir, args.id, None) reassess_pilot_event(args.dbroot, args.id, args.output, args.parfile)

0
scripts/pylot-signalwindow.py Normal file → Executable file
View File

0
scripts/pylot-snr.py Normal file → Executable file
View File