Skip to content

Commit

Permalink
Merge pull request #487 from broadinstitute/dp-dnax
Browse files Browse the repository at this point in the history
dnanexus build fixes pt 3
  • Loading branch information
dpark01 committed Sep 9, 2023
2 parents 2aefa3a + b3f05f8 commit 5a7d6d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pipes/WDL/workflows/terra_table_to_tsv.wdl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
version 1.0

#DX_SKIP_WORKFLOW
import "../tasks/tasks_terra.wdl" as terra

workflow terra_table_to_tsv {
Expand Down
2 changes: 2 additions & 0 deletions pipes/WDL/workflows/terra_update_assemblies.wdl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
version 1.0

#DX_SKIP_WORKFLOW
import "../tasks/tasks_terra.wdl" as terra

workflow update_data_tables {
Expand Down
2 changes: 1 addition & 1 deletion pipes/dnax/dx-launcher/dx-yml-build
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ app_basename=os.path.splitext(os.path.basename(app_yaml_path))[0]
output_json_filename=app_basename+'.json'

with open(app_yaml_path) as infile:
data = yaml.load(infile)
data = yaml.safe_load(infile)
data["00COMMENT"] = "This {}.json has been generated from {} automatically using dx-yml-build".format(app_basename,app_yaml_path)
with open(output_json_filename, 'w') as outfile:
json.dump(data, outfile, sort_keys=True, indent=2)
Expand Down

0 comments on commit 5a7d6d5

Please sign in to comment.