Report
Report helper functions.
make_all_reports(pairs)
Make reports for all status levels into the output_folder specified in the config.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pairs
|
list[ProteinPair]
|
list of all protein pairs. |
required |
Source code in src/xlranker/report.py
make_report(pairs, status, output_path)
Write network of protein pairs that have the level of the inputted status or higher.
Status order (highest on top): 1. Conservative 2. Minimal 3. Expanded 4. All
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pairs
|
list[ProteinPair]
|
list of all protein pairs |
required |
status
|
ReportStatus
|
Minimum status to accept. |
required |
output_path
|
Path
|
output path to save pair to |
required |