From 755ce179ad70da346cf70e22d87b3b72b943deb3 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Mon, 13 Feb 2023 10:31:26 +1300 Subject: [PATCH] head: added output format options --- python/obitools3/commands/head.pyx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/obitools3/commands/head.pyx b/python/obitools3/commands/head.pyx index ab55d40..6734450 100755 --- a/python/obitools3/commands/head.pyx +++ b/python/obitools3/commands/head.pyx @@ -8,6 +8,7 @@ from obitools3.apps.optiongroups import addMinimalInputOption, addMinimalOutputO from obitools3.dms.view import RollbackException from obitools3.apps.config import logger from obitools3.utils cimport str2bytes +from obitools3.apps.optiongroups import addExportOutputOption import time import sys @@ -23,6 +24,7 @@ def addOptions(parser): addMinimalInputOption(parser) addMinimalOutputOption(parser) + addExportOutputOption(parser) addNoProgressBarOption(parser) group=parser.add_argument_group('obi head specific options')