Skip to content
Snippets Groups Projects

ingestion manifest creation for EVLA CAL ingestion only

Merged Daniel Lyons requested to merge WS-507-evla-cal-ingestion-manifest into main
3 files
+ 5
24
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -3,7 +3,7 @@
import sys
from pathlib import Path
from ingest_envoy.ingestion_manifest_writer import EvlaCalIngestionManifestWriter
from ingest_envoy.ingestion_manifest import IngestionManifest
from ingest_envoy.utilities import ScienceProductType
@@ -24,6 +24,4 @@ def main():
# ValueError will be thrown if ingestion_type isn't a known ScienceProductType
ingestion_type = ScienceProductType.from_str(ingestion_type)
writer = EvlaCalIngestionManifestWriter(ingestion_type, source_dir)
writer.write_evla_cal_manifest(locator)
# IngestionManifest(source_dir, ingestion_type, locator).create()
IngestionManifest(source_dir, ingestion_type, locator).create()
Loading