Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
NRAO Gitlab has been upgraded to version 17.10
Show more breadcrumbs
ssa
workspaces
Commits
4a186fa3
Commit
4a186fa3
authored
3 years ago
by
Nathan Hertz
Committed by
Daniel Lyons
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Minor formatting
parent
5dff3019
No related branches found
No related tags found
1 merge request
!337
ingestion manifest creation for EVLA CAL ingestion only
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/cli/executables/pexable/ingest_envoy/ingest_envoy/ingestion_manifest.py
+13
-11
13 additions, 11 deletions
...s/pexable/ingest_envoy/ingest_envoy/ingestion_manifest.py
with
13 additions
and
11 deletions
apps/cli/executables/pexable/ingest_envoy/ingest_envoy/ingestion_manifest.py
+
13
−
11
View file @
4a186fa3
...
...
@@ -49,6 +49,17 @@ class InputGroup:
return
repr
(
self
.
__dict__
)
class
OutputGroup
:
"""
Represents result of data processing
"""
def
__init__
(
self
):
self
.
science_products
=
[]
self
.
ancillary_products
=
[]
def
__repr__
(
self
):
return
repr
(
self
.
__dict__
)
class
IngestionManifest
:
"""
Represents JSON layout of ingestion information, encompassing several potential scenarios.
see ingest_envoy/test/examples, nicked from https://open-confluence.nrao.edu/x/roPCAQ
...
...
@@ -88,19 +99,10 @@ class IngestionManifest:
)
class
OutputGroup
:
"""
Represents result of data processing
"""
def
__init__
(
self
):
self
.
science_products
=
[]
self
.
ancillary_products
=
[]
def
__repr__
(
self
):
return
repr
(
self
.
__dict__
)
class
AssociateGroup
:
"""
NOTE: Only used in the case of RealFast execution blocks currently
A representation of Science Products which are not part of the same Input or Output groups
but are still fundamentally linked. Created for RealFast project, to link the RealFast
specific execution block & image to the execution block during which a transient was
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment