Baby Language Lab Scripts
A collection of data processing tools.
 All Classes Namespaces Files Functions Variables Pages
custom_app.py
Go to the documentation of this file.
1 ## @package app.custom_app
2 
3 from app.app import App
4 #you will need to import the module that contains your custom script below:
5 #from custom_scripts.dana.data import *
6 #from custom_scripts.dana.trim import *
7 #from custom_scripts.dana.timetable import *
8 #from custom_scripts.dana.misalign import *
9 #from custom_scripts.elizabeth.combine import *
10 #from custom_scripts.elizabeth.acrp import *
11 
12 #from custom_scripts.reliability.rel_conf_mat.tasks2_3 import *
13 #from custom_scripts.reliability.rel_conf_mat.task4 import *
14 #from custom_scripts.reliability.rel_conf_mat.man_fan_count import *
15 #from custom_scripts.reliability.feedback.stats import *
17 #from custom_scripts.reliability.rel_conf_mat.means import *
18 #from custom_scripts.reliability.rel_conf_mat.child_voc import *
19 #from custom_scripts.reliability.rel_conf_mat.lena_db import *
20 
21 ## Handles startup for the custom command line scripts (such as thos contained in the bll_app/custom_scripts/ folder).
22 # Using this class as an entry point for command line scripts gives them access to all of the bll_app classes.
23 # So for example, you can use the TRSParser class in your command line scripts to read TRS files.
24 class CustomApp(App):
25  def __init__(self):
26  super(CustomApp, self).__init__(
27  'custom_app',
28  App.APP_TYPES.CMD_LINE #this will prevent the superclass from starting up PyGTK
29  )
30 
31  ## See superclass description. Calling this will start your command line script (if it contains a method called "run").
32  def start(self):
33  run()