CLI
Console script for spoc.
annotate(fragments_path, label_library_path, labelled_fragments_path)
Functionality to annotate porec fragments. Adds annotating labels and sister identity of mapped read fragments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fragments_path |
str
|
Path to the input fragments file. |
required |
label_library_path |
str
|
Path to the label library file. |
required |
labelled_fragments_path |
str
|
Path to the output labelled fragments file. |
required |
Source code in spoc/cli.py
bin_contacts(contact_path, pixel_path, bin_size, same_chromosome)
Functionality to bin contacts. Bins higher order contacts into genomic bins of fixed size. Contacts path should be an URI.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
contact_path |
str
|
Path to the input contact file. |
required |
pixel_path |
str
|
Path to the output pixel file. |
required |
bin_size |
int
|
Size of the bins. Defaults to 10000. |
required |
same_chromosome |
bool
|
Only bin contacts on the same chromosome. Defaults to False. |
required |
Source code in spoc/cli.py
expand(fragments_path, expanded_contacts_path, n_fragments)
Functionality to expand labelled fragments to contacts. Expands n-way fragments over sequencing reads to yield contacts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fragments_path |
str
|
Path to the labelled fragments file. |
required |
expanded_contacts_path |
str
|
Path to the output contacts file. |
required |
n_fragments |
int
|
Number of fragments per read to expand. Defaults to 3. |
required |
Source code in spoc/cli.py
main()
merge()
merge_contacts(contact_paths, output)
Functionality to merge annotated fragments. Concatenates contacts with the same configuration together and copies contacts with different configurations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
contact_paths |
tuple
|
Paths to the input contact files. |
required |
output |
str
|
Path to the output merged contact file. |
required |