Mercurial > repos > stemcellcommons > macs2
diff macs2_wrapper.xml @ 20:db2805f9df66 draft
Replace simplejson with json.
| author | stemcellcommons |
|---|---|
| date | Wed, 09 Apr 2014 18:06:03 -0400 |
| parents | e047d7bbace9 |
| children | eed6c8dcef5d |
line wrap: on
line diff
--- a/macs2_wrapper.xml Wed Apr 09 18:03:05 2014 -0400 +++ b/macs2_wrapper.xml Wed Apr 09 18:06:03 2014 -0400 @@ -114,7 +114,7 @@ <configfiles> <configfile name="outputs_file"><% -import simplejson +import json %> ##======================================================================================= #set $__outputs = { 'command':str( $major_command.major_command_selector ) } @@ -132,10 +132,10 @@ #set $__outputs['output_bdgcmp_file'] = str( $output_bdgcmp_file ) #end if -${ simplejson.dumps( __outputs ) } +${ json.dumps( __outputs ) } </configfile> <configfile name="options_file"><% -import simplejson +import json %> ##======================================================================================= #set $__options = { 'experiment_name':str( $experiment_name ) } @@ -192,7 +192,7 @@ #end if ##======================================================================================= -${ simplejson.dumps( __options ) } +${ json.dumps( __options ) } </configfile> </configfiles> <tests>
