| 1 | # before running the qc, need to rename various output files
|
|---|
| 2 | import os, string, time
|
|---|
| 3 | from galaxy import datatypes
|
|---|
| 4 | from galaxy import app
|
|---|
| 5 | import galaxy.util
|
|---|
| 6 |
|
|---|
| 7 | #Provides Upload tool with access to list of available builds
|
|---|
| 8 | repospath = '/usr/local/galaxy/data/rg'
|
|---|
| 9 | builds = []
|
|---|
| 10 | #Read build names and keys from galaxy.util
|
|---|
| 11 | for dbkey, build_name in galaxy.util.dbnames:
|
|---|
| 12 | builds.append((build_name,dbkey,False))
|
|---|
| 13 |
|
|---|
| 14 | def timenow():
|
|---|
| 15 | """return current time as a string
|
|---|
| 16 | """
|
|---|
| 17 | return time.strftime('%d/%m/%Y %H:%M:%S', time.localtime(time.time()))
|
|---|
| 18 |
|
|---|
| 19 | #Return available builds
|
|---|
| 20 | def get_available_builds(defval='hg18'):
|
|---|
| 21 | for i,x in enumerate(builds):
|
|---|
| 22 | if x[1] == defval:
|
|---|
| 23 | x = list(x)
|
|---|
| 24 | x[2] = True
|
|---|
| 25 | builds[i] = tuple(x)
|
|---|
| 26 | return builds
|
|---|
| 27 |
|
|---|
| 28 | # Create link to files here
|
|---|
| 29 | def exec_after_process(app, inp_data, out_data, param_dict, tool, stdout, stderr):
|
|---|
| 30 | base_name = param_dict.get( 'title1', 'Null_Phenotype' )
|
|---|
| 31 | base_name = base_name.encode()
|
|---|
| 32 | info = 'Null phenotypes created by rgfakePhe at %s' % timenow()
|
|---|
| 33 | s = string.whitespace + string.punctuation
|
|---|
| 34 | ptran = string.maketrans(s,'_'*len(s))
|
|---|
| 35 | base_name = base_name.translate(ptran)
|
|---|
| 36 | data = out_data['ppheout']
|
|---|
| 37 | data.name = '%s.phe' % (base_name) # that's how they've been named in rgfakePhe.py
|
|---|
| 38 | data.file_name = data.file_name
|
|---|
| 39 | data.metadata.base_name = base_name
|
|---|
| 40 | out_data['pheout'] = data
|
|---|
| 41 | app.model.context.flush()
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
|
|---|