Extract Coverage from Assembly Element

This workflow element extracts coverage and/or base counts from incoming assembly data.

Element type: extract-assembly-coverage


Parameters

ParameterDescriptionDefault ValueParameter in Workflow FileType
Output filePath to the output data file. If this is set, the slot Location will not be used.assembly_coverage.txturl-outstring
ExportType of data to export: coverage or base-count.coverageexport-typestring
ThresholdMinimum coverage value to include in the output.1thresholdnumeric

Input/Output Ports

Input Port

Name in GUIName in Workflow FileSlotSlot in Workflow FileType
in-assemblyin-assemblyAssembly dataassemblyassembly

Output Port

(None defined directly in the current schema – output is handled via the file path parameter url-out.)


Example

To extract base coverage from a single assembly file:

ugene workflow run \
  --element extract-assembly-coverage \
  --url-out ./coverage.txt \
  --export-type coverage \
  --threshold 5

This will output coverage data for all positions with at least 5x coverage.