annotate operation_filter.py @ 5:718d04143c31 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit d7b1a60c0aecc46b7f625c3e32f882562b512fd9
author devteam
date Mon, 13 Jun 2022 16:23:52 +0000
parents a10f49d9218a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
1 # runs after the job (and after the default post-filter)
4
a10f49d9218a planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 3
diff changeset
2 from galaxy.jobs.handler import JOB_ERROR
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
3 from galaxy.tools.parameters import DataToolParameter
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
4
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
5 # Older py compatibility
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
6 try:
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
7 set()
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
8 except:
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
9 from sets import Set as set
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
10
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
11
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
12 def validate_input( trans, error_map, param_values, page_param_map ):
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
13 dbkeys = set()
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
14 data_param_names = set()
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
15 data_params = 0
4
a10f49d9218a planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 3
diff changeset
16 for name, param in page_param_map.items():
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
17 if isinstance( param, DataToolParameter ):
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
18 # for each dataset parameter
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
19 if param_values.get(name, None) is not None:
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
20 dbkeys.add( param_values[name].dbkey )
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
21 data_params += 1
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
22 # check meta data
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
23 try:
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
24 param = param_values[name]
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
25 if isinstance( param.datatype, trans.app.datatypes_registry.get_datatype_by_extension( 'gff' ).__class__ ):
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
26 # TODO: currently cannot validate GFF inputs b/c they are not derived from interval.
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
27 pass
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
28 else: # Validate interval datatype.
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
29 int( param.metadata.startCol )
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
30 int( param.metadata.endCol )
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
31 int( param.metadata.chromCol )
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
32 if param.metadata.strandCol is not None:
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
33 int( param.metadata.strandCol )
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
34 except:
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
35 error_msg = "The attributes of this dataset are not properly set. " + \
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
36 "Click the pencil icon in the history item to set the chrom, start, end and strand columns."
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
37 error_map[name] = error_msg
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
38 data_param_names.add( name )
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
39 if len( dbkeys ) > 1:
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
40 for name in data_param_names:
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
41 error_map[name] = "All datasets must belong to same genomic build, " \
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
42 "this dataset is linked to build '%s'" % param_values[name].dbkey
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
43 if data_params != len(data_param_names):
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
44 for name in data_param_names:
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
45 error_map[name] = "A dataset of the appropriate type is required"
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
46
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
47
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
48 def exec_after_merge(app, inp_data, out_data, param_dict, tool=None, stdout=None, stderr=None):
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
49 # strip strand column if clusters were merged
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
50 for data in out_data.values():
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
51 if param_dict['returntype'] is True:
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
52 data.metadata.chromCol = 1
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
53 data.metadata.startCol = 2
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
54 data.metadata.endCol = 3
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
55 # merge always clobbers strand
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
56 data.metadata.strandCol = None
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
57
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
58
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
59 def exec_after_cluster(app, inp_data, out_data, param_dict, tool=None, stdout=None, stderr=None):
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
60 # strip strand column if clusters were merged
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
61 if param_dict["returntype"] == '1':
3
ffbd1de29c28 planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/join commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
62 for data in out_data.values():
0
e56b47dce68a Imported from capsule None
devteam
parents:
diff changeset
63 data.metadata.strandCol = None