-
Notifications
You must be signed in to change notification settings - Fork 0
Facet-imaging updates #155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jurjen93
wants to merge
26
commits into
master
Choose a base branch
from
facet_imaging_upd
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
6530e26
debug facet_imaging
jurjen93 cb1640b
add inputs.config
jurjen93 7cec14a
add InlineJavascriptRequirement
jurjen93 680d11b
ncpu bug
jurjen93 b1838a1
dockerrequirement
jurjen93 9f7832e
scalar visibilities off
jurjen93 b009106
scalar vis
jurjen93 2205f9a
Merge remote-tracking branch 'origin/master' into facet_imaging_upd
jurjen93 07d09ba
Merge remote-tracking branch 'origin/master' into facet_imaging_upd
jurjen93 ea21824
add dp3 avg
jurjen93 42d8d84
rename step
jurjen93 f414df3
fix order linkmerge
jurjen93 c69a1b0
remove linkmerge
jurjen93 552f3d3
multiple inputs
jurjen93 1daf14f
fix error from sortms
jurjen93 6075fe8
add number of cores for imaging
jurjen93 52ff586
relabel fix
jurjen93 0cb949d
relabel fix
jurjen93 49241d1
lower multiscal-scale-bias for lower chance on diverging imaging
jurjen93 a01edae
add briggs option
jurjen93 109f798
remove item sep
jurjen93 ef167bf
calculate ncpu
jurjen93 0a22eab
calculate ncpu
jurjen93 3a97044
avgstep to averaging_factor
jurjen93 e09ad50
Update workflows/facet_imaging.cwl
jurjen93 58ed4f3
make averaging factor > 1
jurjen93 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| class: CommandLineTool | ||
| cwlVersion: v1.2 | ||
| id: dp3_avg_step | ||
| label: DP3 averaging for prediction | ||
| doc: Average MeasurementSet in time and frequency for faster prediction. | ||
|
|
||
| baseCommand: DP3 | ||
|
|
||
| inputs: | ||
| - id: msin | ||
| type: Directory | ||
| doc: Input MeasurementSet | ||
| inputBinding: | ||
| position: 0 | ||
| prefix: msin= | ||
| separate: false | ||
|
|
||
| - id: averaging_factor | ||
| type: int? | ||
| doc: Averaging factor | ||
|
|
||
| outputs: | ||
| - id: ms_avg | ||
| doc: MeasurementSet at lower time/freq resolution | ||
| type: Directory | ||
| outputBinding: | ||
| glob: "$( inputs.msin.basename + '.avg.ms')" | ||
|
|
||
| - id: logfile | ||
| type: File[] | ||
| outputBinding: | ||
| glob: predict_avg*.log | ||
| doc: | | ||
| The files containing the stdout | ||
| and stderr from the step. | ||
|
|
||
| arguments: | ||
| - steps=[avg] | ||
| - avg.type=averager | ||
| - valueFrom: $("avg.timestep=" + inputs.averaging_factor) | ||
| - valueFrom: $("avg.freqstep=" + inputs.averaging_factor) | ||
| - msout.storagemanager='dysco' | ||
| - msout.storagemanager.databitrate=6 | ||
| - msout=$( inputs.msin.basename + '.avg.ms') | ||
|
|
||
| requirements: | ||
| - class: InlineJavascriptRequirement | ||
|
|
||
| hints: | ||
| - class: DockerRequirement | ||
| dockerPull: vlbi-cwl | ||
| - class: ResourceRequirement | ||
| coresMin: 8 | ||
|
|
||
| stdout: dp3_avg_step.log | ||
| stderr: dp3_avg_step_err.log | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this step is best combined with
steps/dp3_prep_phasediff.cwl. That only does averaging as well.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes we can do this in a separate MR. Will add a ticket to the LOFAR-VLBI ticket board
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would carry finishing this PR over to the busy week then. It feels a bit moot to add a step and then immediately have another PR removing it already planned for the next weeks.