|
META TOPICPARENT |
name="WebHome" |
ALMA QA2 Packaging Script |
|
For a standard script-generator-assisted analysis, you can continue to run the script in the following way: |
|
< < | QA_Packager(origpath='/pathToMySB', readme='./README.header.txt', packpath='./20XX.1.00XXX.S', PIscript='/science/qa2/scriptForPI.py', style='cycle6-nopipe', mode='copy') |
> > | QA_Packager(origpath='/pathToMySB', readme='./README.header.txt', packpath='./20XX.1.00XXX.S', PIscript='/science/qa2/scriptForPI.py', style='cycle7-nopipe', mode='copy') |
|
If you just want to test, set mode = 'fake'. |
|
-
- style = "cycle4-nopipe": so far (v1.49) same as cycle3-nopipe
- style = "cycle4-pipe": so far (v1.49) same as cycle3-pipe1
- style = "cycle5-nopipe", "cycle6-nopipe": same as cycle4-nopipe
|
|
< < |
-
- style = "cycle5-pipe", "cycle6-pipe": taking into account naming changes (manifest, ppr) from the CASA 5.1.1 pipeline onwards
|
> > |
-
- style = "cycle5-pipe", "cycle6-pipe", "cycle7-pipe": taking into account naming changes (manifest, ppr) from the CASA 5.1.1 pipeline onwards
|
|
-
- default = "" (empty): ignore the parameter "style" and use the noms parameter instead
In order to perform the final packaging, run the script with
|
|
< < | QA_Packager(origpath='/pathToMySB',readme='./README.header.txt',packpath='./20XX.1.00XXX.S',mode='hard', style='cycle6-nopipe', PIscript='/science/qa2/scriptForPI.py') |
> > | QA_Packager(origpath='/pathToMySB',readme='./README.header.txt',packpath='./20XX.1.00XXX.S',mode='hard', style='cycle7-nopipe', PIscript='/science/qa2/scriptForPI.py') |
|
Packaging including Pipeline products |
| staged_root='',
mode='<hard, copy, fake>', # default is 'copy'
PIscript="", # needs to be included in the package |
|
< < | cycle=) # where num is 0,1,2,3,4,5,6 and decides on the packaging style (pipeline version used in that cycle) |
> > | cycle=) # where num is 0,1,2,3,4,5,6,7 and decides on the packaging style (pipeline version used in that cycle) |
|
Example: |
|
< < | QA_Pipeline_Stager('2015.100456.S-2016-08-08T123456', '2015.100456.S', mode='copy', PIscript="./scriptForPI.py", cycle=3) |
> > | QA_Pipeline_Stager('2019.100456.S-2020-08-08T123456', '2019.100456.S', mode='copy', PIscript="./scriptForPI.py", cycle=7) |
|
Case 1b: incremental packaging of only the manual imaging products |
|
< < | An SB was processed by the Cycle 6 pipeline and its calibration was already ingested. Now, additional manual imaging was done in situ and an incremental package is to be created for ingestion of the manual imaging products into the archive. |
> > | An SB was processed by the Cycle 7 pipeline and its calibration was already ingested. Now, additional manual imaging was done in situ and an incremental package is to be created for ingestion of the manual imaging products into the archive. |
|
Then run the packager as follows:
QA_Pipeline_Stager(pipeline_root='<top dir of pipeline results>',
staged_root='<project ID == top dir of output package>',
mode='man-img-only', |
|
< < | cycle=) # where num is 6 |
> > | cycle=) # where num is 7 |
|
Example: |
|
< < | QA_Pipeline_Stager('2015.100456.S-2016-08-08T123456', '2015.100456.S', mode='man-img-only', cycle=6) |
> > | QA_Pipeline_Stager('2019.100456.S-2020-08-08T123456', '2019.100456.S', mode='man-img-only', cycle=7) |
|
NOTE: If you only have a "working" and no "products" directory, create a link to the "working" directory under the name "products" on the same level as the "working" directory, i.e. run |
| packpath='',
readme='',
mode='<hard,copy,fake,ticket>', |
|
< < | style='cycle6-pipe', # this style needs to the chosen in this case |
> > | style='cycle7-pipe', # this style needs to the chosen in this case |
| PIscript="./scriptForPI.py") # overwrites the original scriptForPI.py if needed
Example: |
|
< < | QA_Packager(origpath='./2018.100456.S-analysis',
packpath='./2018.100456.S', |
> > | QA_Packager(origpath='./2019.100456.S-analysis',
packpath='./2019.100456.S', |
| readme='myREADME.txt',
mode='hard', |
|
< < | style='cycle6-pipe', |
> > | style='cycle7-pipe', |
| PIscript="./scriptForPI.py")
|