Skip to content

Commit

Permalink
reordered function calls so DECIPHER column is created before reorder…
Browse files Browse the repository at this point in the history
…_columns so that the DECIPHER column can be moved around
  • Loading branch information
kjwinfield committed Aug 17, 2022
1 parent eba6fc3 commit 9135719
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/home/dnanexus/generate_workbook/utils/vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,12 @@ def process(self) -> None:
if self.args.exclude or self.args.include:
self.drop_columns()

if self.args.reorder:
self.order_columns()

if self.args.decipher:
self.add_decipher_column()

if self.args.reorder:
self.order_columns()

self.format_strings()
self.add_hyperlinks()
self.rename_columns()
Expand Down

0 comments on commit 9135719

Please sign in to comment.