Library
This module provides managing classes and methods for the tool.
BedGraph
A BedGraph object holds information and process bedgraph files with coverage.
Attributes:
-
filepath
(str
) –path to a bedgraph file
-
contig_sizes
(dict
) –Dictionary with contig sizes
-
coverage
(dict
) –Dictionary with format: key - contig id, value - pd.Series with coverage counts.
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 |
|
__init__(filepath, contig_sizes, parameters)
Create a BedGraph object
Parameters:
-
filepath
(str
) –path to a bedgraph file.
-
contig_sizes
(dict
) –Dictionary with format: key - contig id, value - full length of the corresponding contig.
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
__read_file()
Read correspnding bedgraph file.
Returns:
-
coverage
(dict
) –Dictionary with format: key - contig id, value - pd.Series with coverage counts.
Source code in lovis4u/DataProcessing.py
get_window_coverage(contig, start, end)
Get coverage for a particular window.
Parameters:
-
contig
(str
) –contig id
-
start
(int
) –start coordinate (0-based)
-
end
(int
) –end coordinate (0-based)
Source code in lovis4u/DataProcessing.py
CoverageProfiles
A CoverageProfiles object holds information about a set of bedgraph profiles
Attributes:
-
bedgraph_files
(list
) –list with paths to bedgraph files.
-
contig_sizes
–Dictionary with format: key - contig id, value - full length of the corresponding contig.
-
bedgraphs
(list
) –list with BedGraph objects
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
__init__(bedgraph_files, contig_sizes, parameters)
Create a CoverageProfiles object
Parameters:
-
bedgraph_files
(list
) –list with paths to bedgraph files.
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
-
contig_sizes
(dict
) –Dictionary with format: key - contig id, value - full length of the corresponding contig.
Source code in lovis4u/DataProcessing.py
Feature
A Feature object represents a locus' feature and its properties.
Attributes:
-
feature_id
(str
) –Feature identifier.
-
feature_type
(str
) –Type of element (e.g. CDS or tRNA).
-
start
(int
) –1-based start genomic coordinate.
-
end
(int
) –1-based end genomic coordinates
-
strand
(int
) –Genomic strand (1: plus strand, -1: minus strand).
-
name
(str
) –Name of the feature which will be used as a label.
-
sequence
(Seq
) –Feature's sequence.
-
record
(SeqRecord
) –SeqRecord object of corresponding feature sequence.
-
group
(str
) –Feature group that defines feature's colour and meant to represent a set of homologous features. Can be set with Loci.mmseqs_cluster() method that uses mmseqs clustering to define CDS feature groups.
-
group_type
(str
) –Type of feature group that allow to visualise different set of feature groups differently (e.g. plot labels only for features which group_type is "variable" or "labeled").
-
category
(str
) –Feature category which initially is built to handle phrogs category annotation. In visualisation it defines the "category" colour annotation under features. Supposed to represent clusters on locus or any second layer of feature properties.
-
vis_prms
(dict
) –Visualisation parameters that holds colours, label and other info for Drawing methods.
-
overlapping
(bool
) –Whether feature overlaps with visualised region or not.
-
prms
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
__init__(feature_id, feature_type, start, end, strand, name, sequence, group, group_type, category, vis_prms, overlapping, parameters)
Create a Feature object.
Parameters:
-
feature_id
(str
) –Feature identifier.
-
feature_type
(str
) –Type of element (e.g. CDS or tRNA). Currently only CDS are supported.
-
start
(int
) –1-based start genomic coordinate.
-
end
(int
) –1-based end genomic coordinates
-
strand
(int
) –Genomic strand (1: plus strand, -1: minus strand).
-
name
(str
) –Name of the feature which will be used as a label.
-
sequence
(Seq
) –Feature's sequence.
-
group
(str
) –Feature group that defines feature's colour and meant to represent a set of homologous features. Can be set with Loci.mmseqs_cluster() method that uses mmseqs clustering to define CDS feature groups.
-
group_type
(str
) –Type of feature group that allow to visualise different set of feature groups differently (e.g. plot labels only for features which group_type is "variable" or "labeled").
-
category
(str
) –Feature category which initially is built to handle phrogs category annotation. In visualisation it defines the "category" colour annotation under features. Supposed to represent clusters on locus or any second layer of feature properties.
-
vis_prms
(dict
) –Visualisation parameters that holds colours, label and other info for Drawing methods.
-
prms
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
Loci
A Loci object holds information about all loci to be plotted and methods for data preparation.
Attributes:
-
loci
(list
) –List of Locus objects.
-
locus_annotation
(DataFrame
) –Table with information about each locus that defines visualisation (e.g. coordinates for visualisation, description, etc).
-
feature_annotation
(DataFrame
) –Table with information about each feature that defines visualisation (e.g. group, name, category, etc).
-
prms
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
|
__init__(parameters)
Create a Loci object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
__load_annotation_file(file_path, annotation_columns, index_column)
Private method to load an annotation file.
Parameters:
-
file_path
(str
) –File path for an annotation file to be loaded.
-
annotation_columns
(list
) –List of columns that should be considered.
-
index_column
(str
) –Column name to be considered as index.
Returns:
-
DataFrame
–pd.DataFrame: Preprocessed annotation file.
Source code in lovis4u/DataProcessing.py
__update_feature_annotation(feature_id, locus_id, coordinates, feature_type, category, name)
Private method for updating feature annotation.
Parameters:
-
feature_id
(str
) –Feature identifier.
-
locus_id
(str
) –Sequence description.
-
coordinates
(str
) –Feature coordinates.
-
category
(str
) –Feature type.
-
name
(str
) –Feature name.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
__update_locus_annotation(record_id, record_description, record_length)
Private method for updating loci annotation.
Parameters:
-
record_id
(str
) –Sequence identifier.
-
record_description
(str
) –Sequence description.
-
record_length
(int
) –Sequence length.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
cluster_sequences(dataframe, one_cluster)
Define loci order and clusters with proteome similarity based hierarchical clustering. This function changes the order of loci that are plotted and also updates corresponding to each loci group attribute which defines homologues groups of proteomes.
It's designed to use as input mmseqs_cluster() function results. However, if you have obtained homologues groups by other method you can also build pandas dataframe based on that with index corresponding to feature id and column "cluster" corresponding to the group.
Parameters:
-
dataframe
(DataFrame
) –dataframe with feature id - group pairs. Its index column should represent all loci CDS features. one_cluster (bool): consider all sequences to be members of one cluster, but still define the optimal order.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 |
|
define_feature_groups(dataframe, group_column_name='cluster')
Set features attribute "group" based on input dataframe.
By default it is designed to use mmseqs_cluster() function results as input. If you already have precomputed feature groups you can set them with feature table.
Parameters:
-
dataframe
(DataFrame
) –dataframe with feature id - group pairs. Its index column should represent all loci CDS features.
-
group_column_name
(str
, default:'cluster'
) –column name of the dataframe that represent corresponding group to each feature.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
define_labels_to_be_shown()
Set feature visaulisation attribute "show_label" based on feature groups.
controlled by feature_labels_to_ignore, feature_group_types_to_show_label, and feature_group_types_to_show_label_on_first_occurrence parameters.
Returns:
-
–
None
Source code in lovis4u/DataProcessing.py
find_variable_feature_groups(mmseqs_results)
Define feature group type attributes (variable or conserved) based on their conservation in corresponding loci group feature.
It's designed to use as input mmseqs_cluster() function results. However, if you have obtained homologues groups by other method you can also build pandas dataframe based on that with index corresponding to feature id and column "cluster" corresponding to the group.
Parameters:
-
mmseqs_results
(DataFrame
) –dataframe with feature id - group pairs. Its index column should represent all loci CDS features.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
get_contig_sizes()
Helper method to get a dictionary with contig sizes for bedgraph file parsing
Returns:
-
dict
–dictionary with contig sizes
Source code in lovis4u/DataProcessing.py
get_loci_lengths_and_n_of_regions()
Get loci lengths and number of regions.
Returns:
-
list
(list[list[int]]
) –list each element of each contains locus size and number of breaks for visualisation track.
Source code in lovis4u/DataProcessing.py
load_feature_annotation_file(file_path)
Load features annotation file.
Parameters:
-
file_path
(str
) –File path for a features annotation file to be loaded.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
load_loci_from_extended_gff(input_f, ilund4u_mode=False)
Load loci from the folder with gff files. Each GFF file also should contain corresponding nucleotide sequence. Such files are produced for example by pharokka annotation tool.
All files with extension other than .gff (not case-sensitive) will be ignored.
Parameters:
-
input_folder
–folder name with gff files.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
|
load_loci_from_gb(input_folder)
Load loci from the folder with genbank files.
All files with extension other than .gb (not case-sensitive) will be ignored.
Parameters:
-
input_folder
(str
) –folder name with gb files.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 |
|
load_locus_annotation_file(file_path)
Load loci annotation file.
Parameters:
-
file_path
(str
) –File path for a loci annotation file to be loaded.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
mmseqs_cluster()
Cluster all proteins using mmseqs in order to define groups of homologues.
Returns:
-
DataFrame
–pd.DataFrame: parsed mmseqs table (pandas dataframe) with columns: cluster, protein_id; where cluster is defined by representative sequence id within a corresponding cluster.
Source code in lovis4u/DataProcessing.py
pyhmmer_annotation()
Run pyhhmmer hmmscan against a set of databases for additional annotation of hotspot proteins.
Parameters:
-
proteomes
(Proteomes
) –Proteomes object.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
remove_non_overlapping_features()
Removes features that are not overlapping with visualisation window.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
reorient_loci(ilund4u_mode=False)
Auto re-orient loci (reset strands) of loci if they are not matched.
Function tries to maximise co-orientation of homologous features.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
save_feature_annotation_table()
Save feature annotation table to the output folder.
Output file name is feature_annotation_table.tsv
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
save_locus_annotation_table()
Save loci annotation table to the output folder.
Output file name is locus_annotation_table.tsv
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
set_category_colours(use_table=True)
Define colours for each category.
Parameters:
-
use_table
(bool
, default:True
) –Bool value whether table with predefined colours should be used or not.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
set_feature_colours_based_on_groups()
Define features fill colour based on corresponding feature group and group types.
Returns:
-
None
–None
Source code in lovis4u/DataProcessing.py
Locus
A Locus object represents a particular locus that will be one of the sequence tracks on final figure.
Attributes:
-
seq_id
(str
) –Sequence identifier. Can be used to label locus.
-
coordinates
(list
) –List of regions to be shown. Each region format: dict with keys: start, end, strand and corresponding 1-based start, end coordinates and strand (1: plus strand, -1: minus strand).
-
size
(int
) –total length of regions to be plotted.
-
description
(str
) –Sequence description that can be used to label locus.
-
length
(int
) –full length of the locus independent on region that should be plotted.
-
circular
(bool
) –Bool value whether locus is circular or not. It defines whether you have gap or not passing 1 value on the final figure.
-
features
(list
) –list of Feature objects that overlapped with coordinates.
-
order
(int
) –index on ordered list of loci visualisation. Can be pre-defined or found based on loci hierarchical clustering with cluster_sequences category.
-
group
(int | str
) –locus group that defines set of closely-related loci.
-
category_colours
(dict
) –colours for locus' features categories.
-
prms
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/DataProcessing.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
|
__init__(seq_id, coordinates, description, sequence, length, circular, features, order, parameters, group=1)
Create a Locus object.
Parameters:
-
seq_id
(str
) –Sequence identifier. Can be used to label locus.
-
coordinates
(list
) –List of regions to be shown. Each region format: dict with keys: start, end, strand and corresponding 1-based start, end coordinates and strand (1: plus strand, -1: minus strand).
-
description
(str
) –Sequence description that can be used to label locus.
-
sequence
(Seq
) –Locus Sequence.
-
length
(int
) –full length of the locus independent on region that should be plotted.
-
circular
(bool
) –Bool value whether locus is circular or not. It defines whether you have gap or not passing 1 value on the final figure.
-
features
(list
) –list of Feature objects that overlapped with coordinates.
-
order
(int
) –index on ordered list of loci visualisation. Can be pre-defined or found based on loci
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
-
group
(int | str
, default:1
) –locus group that defines set of closely-related loci [1].
Source code in lovis4u/DataProcessing.py
calculate_sequence_property(window_size=29, property_name='gc')
Method to calculate gc content or gc skew
Returns:
-
list
(list
) –list with corresponding values for each nucleotide
Source code in lovis4u/DataProcessing.py
This module provides visualisation of loci annotation.
ColorLegendVis
Bases: Track
ColorLegend track object that handles visualisation of legend to feature's category colours.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
__init__(layout, track_data, parameters)
Create a ColorLegend object.
Parameters:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
draw(canvas)
Draw a ColorLegend track.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
None
–None
Source code in lovis4u/Drawing.py
CrossTrack
Parent class for Cross-Tracks visualisation.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
tracks
(dict
) –List with track objects participated in CrossTrack.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
__init__(layout, tracks, parameters)
Parent's constructor for creating a CrossTrack object.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
tracks
(dict
) –List with track objects participated in CrossTrack.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
draw(canvas)
Empy parent's method for cross track drawing.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
–
None
HomologyTrack
Bases: CrossTrack
Track that handle visualisation of homology lines between homologous features on neighbours' loci.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
tracks
(dict
) –List with track objects participated in CrossTrack.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
|
__init__(layout, tracks, parameters)
Create a HomologyTrack.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
tracks
(dict
) –List with track objects participated in CrossTrack.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
draw(canvas)
Draw HomologyTrack on canvas.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
None
–None
Source code in lovis4u/Drawing.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
|
LocusVis
Bases: Track
LocusVis track object that handles each locus visualisation.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 |
|
__init__(layout, track_data, parameters)
Create a LocusVis object.
Parameters:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
__plot_feature(canvas, feature_data, y_center, height)
Helper method to plot feature polygone
Returns:
-
None
–None
Source code in lovis4u/Drawing.py
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 |
|
draw(canvas)
Draw a LocusVis track.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
None
–None
Source code in lovis4u/Drawing.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
|
ProfileVis
Bases: Track
ProfileVis track object that handles visualisation of a coverage profile.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 |
|
__init__(layout, track_data, parameters)
Create a ProfileVis object.
Parameters:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
draw(canvas)
Draw a ProfileVis track.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
None
–None
Source code in lovis4u/Drawing.py
663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 |
|
PropertyVis
Bases: Track
PropertyVis track object that handles visualisation of a coverage profile.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 |
|
__init__(layout, track_data, parameters)
Create a PropertyVis object.
Parameters:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
draw(canvas)
Draw a PropertyVis track.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
None
–None
Source code in lovis4u/Drawing.py
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 |
|
ScaleVis
Bases: Track
ScaleVis track object that handles visualisation of scale bottom line.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 |
|
__init__(layout, track_data, parameters)
Create a LocusVis object.
Parameters:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
draw(canvas)
Draw a ScaleVis track.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
None
–None
Source code in lovis4u/Drawing.py
Track
Parent class for visualisation Tracks.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
prms
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
__init__(layout, track_data, parameters)
Parent's constructor for creating a Track object.
Parameters:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –a dictionary with prepared track specific data.
-
parameters
(Parameters
) –Parameters' class object.
Source code in lovis4u/Drawing.py
draw(canvas)
Empy parent's method for track drawing.
Parameters:
-
canvas
(Canvas
) –a canvas object.
Returns:
-
None
–None
This module provides managing classes and methods for the tool.
BedGraphProfileLoader
Bases: Loader
A BedGraphProfileLoader object prepares data for a categories colour coverage track Drawing object.
Attributes:
-
prms
(Parameters
) –Parameters' class object.
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –Track specific data that will be sent to the Drawing module.
Source code in lovis4u/Manager.py
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 |
|
__init__(parameters)
Create a BedGraphProfileLoader object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
calculate_track_height()
Calculate bedgraph track height to define layout.
Returns:
-
float
–track height.
Source code in lovis4u/Manager.py
create_track()
Initialise a ProfileVis track object.
Returns:
-
–
lovis4u.Drawing.ProfileVis: visualisation track.
Source code in lovis4u/Manager.py
prepare_track_specific_data(layout, profile, profile_index, locus)
Prepare BedGraphProfileLoader specific data.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
profile
(BedGraph
) –BedGraph object with information about bedgraph profile.
-
profile_index
(int
) –index of the current profile across all bedgraph tracks.
-
locus
(Locus
) –corresponding locus object.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 |
|
Canvas
An Image object holds canvas;.
Attributes:
-
canvas
(Canvas
) –canvas object of the reportlab library.
Source code in lovis4u/Manager.py
__init__(filename, width, height, parameters)
Create a Canvas object.
Parameters:
-
filename
(str
) –path and name of the output pdf.
-
width
(float
) –width of the canvas.
-
height
(float
) –height of the pdf.
Source code in lovis4u/Manager.py
save()
Save canvas as a pdf file.
Returns:
-
None
–None
CanvasManager
Canvas manager object responsible for preprocessing data for visualisation and interaction between visualisation and raw data.
Attributes:
-
layout
(dict
) –Defines size and coordinate system of a canvas.
-
tracks
(list
) –List containing Track objects each of them represents visualisation unit (e.g. particular locus).
-
cross_tracks
(list
) –List containing CrossTrack objects each of them represents visualisation unit that interacts with multiple regular Track objects.
prms (Parameters): Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/Manager.py
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 |
|
__init__(parameters)
Create a CanvasManager object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/Manager.py
add_categories_colour_legend_track(loci)
Add categories colour legend tracks to your canvas.
Parameters:
-
loci
(Loci
) –Loci object with information about sequences and features.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
add_coverage_profiles_tracks(coverage_profiles, loci)
Add coverage profiles tracks to your canvas.
Parameters:
-
coverage_profiles
(CoverageProfiles
) –CoverageProfiles object.
-
loci
(Loci
) –Loci object with information about sequences and features.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
add_homology_track()
Add homology track to your canvas.
You should add this track after you added loci tracks.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
add_loci_tracks(loci)
Add loci tracks to your canvas.
Parameters:
-
loci
(Loci
) –Loci object with information about sequences and features.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
add_property_track(loci, property_name='gc')
Add property track to your canvas.
Parameters:
-
loci
(Loci
) –Loci object with information about sequences and features.
-
property_name
(str
, default:'gc'
) –Name of the property to plot (gc or gc_skew)
Returns:
-
None
–None
Source code in lovis4u/Manager.py
add_scale_line_track()
Add scale line tracks to your canvas.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
define_layout(loci)
Define canvas' layout based on input loci.
Parameters:
-
loci
(Loci
) –Loci object with information about sequences and features.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
|
plot(filename)
Plot all added tracks and save the plot as pdf.
Parameters:
-
filename
(str
) –filename for the output pdf.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
CategoriesColorLegendLoader
Bases: Loader
A CategoriesColorLegendLoader object prepares data for a categories colour legend track Drawing object.
Attributes:
-
prms
(Parameters
) –Parameters' class object.
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –Track specific data that will be sent to the Drawing module.
Source code in lovis4u/Manager.py
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
|
__init__(parameters)
Create a CategoriesColorLegendLoader object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
calculate_track_height()
Calculate track height to define layout.
Returns:
-
float
–track height.
Source code in lovis4u/Manager.py
create_track()
Initialise a ColorLegendVis track object.
Returns:
-
–
lovis4u.Drawing.LocusVis | None: visualisation track.
Source code in lovis4u/Manager.py
prepare_track_specific_data(layout, loci)
Prepare ScaleLoader specific data.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
loci
(Loci
) –Loci object with information about sequences and features.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
Loader
Parent class for tracks loaders.
Attributes:
-
prms
(Parameters
) –Parameters' class object.
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –Track specific data that will be sent to the Drawing module.
Source code in lovis4u/Manager.py
__init__(parameters)
Parent's constructor for creating a Loader class object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
Source code in lovis4u/Manager.py
calculate_track_height()
create_track()
LocusLoader
Bases: Loader
A LocusLoader object prepares data for a Locus track Drawing object.
Attributes:
-
prms
(Parameters
) –Parameters' class object.
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –Track specific data that will be sent to the Drawing module.
Source code in lovis4u/Manager.py
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 |
|
__init__(parameters)
Create a LocusLoader object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
calculate_track_height()
Calculate track height to define layout.
Returns:
-
float
(float
) –track height.
Source code in lovis4u/Manager.py
create_track()
Initialise a LocusVis track object.
Returns:
-
–
lovis4u.Drawing.LocusVis: visualisation track.
Source code in lovis4u/Manager.py
prepare_track_specific_data(locus, layout)
Prepare LocusLoader specific data.
Attributes:
-
locus
(Locus
) –corresponding locus object.
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 |
|
Parameters
A Parameters object holds and parse command line's and config's arguments.
A Parameters object have to be created in each script since it's used almost by each class of the tool as a mandatory argument.
Attributes:
-
args
(dict
) –dictionary that holds all arguments.
Source code in lovis4u/Manager.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
|
__init__()
load_config(path='standard')
Load configuration file.
Arguments path (str): path to a config file or name (only standard available at this moment).
Returns:
-
None
–None
Source code in lovis4u/Manager.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
|
load_fonts()
Load fonts.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
load_palette()
Load palette file.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
parse_cmd_arguments()
Parse command-line args
Returns:
-
None
–None
Source code in lovis4u/Manager.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
|
ScaleLoader
Bases: Loader
A LocusLoader object prepares data for a Scale track Drawing object.
Attributes:
-
prms
(Parameters
) –Parameters' class object.
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –Track specific data that will be sent to the Drawing module.
Source code in lovis4u/Manager.py
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 |
|
__init__(parameters)
Create a ScaleLoader object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
calculate_track_height()
Calculate track height to define layout.
Returns:
-
float
–track height.
Source code in lovis4u/Manager.py
create_track()
Initialise a ScaleVis track object.
Returns:
-
–
lovis4u.Drawing.LocusVis: visualisation track.
Source code in lovis4u/Manager.py
prepare_track_specific_data(layout)
Prepare ScaleLoader specific data.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
SequencePropertyLoader
Bases: Loader
A SequencePropertyLoader object prepares data for visualisation of sequence features like GC content
Attributes:
-
prms
(Parameters
) –Parameters' class object.
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
track_data
(dict
) –Track specific data that will be sent to the Drawing module.
Source code in lovis4u/Manager.py
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 |
|
__init__(parameters)
Create a SequencePropertyLoader object.
Parameters:
-
parameters
(Parameters
) –Parameters' class object that holds config and cmd arguments.
calculate_track_height()
Calculate bedgraph track height to define layout.
Returns:
-
float
–track height.
Source code in lovis4u/Manager.py
create_track()
Initialise a PropertyVis track object.
Returns:
-
–
lovis4u.Drawing.PropertyVis: visualisation track.
Source code in lovis4u/Manager.py
prepare_track_specific_data(layout, locus, property_name)
Prepare SequencePropertyLoader specific data.
Attributes:
-
layout
(dict
) –Layout built by CanvasManager's define_layout() method.
-
locus
(Locus
) –corresponding locus object.
Returns:
-
None
–None
Source code in lovis4u/Manager.py
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 |
|
This module provides some methods (e.g. colors tranformation, data copying) used by the tool.
adjust_paths(to)
Change paths in the internal config files for linux or mac.
Parameters:
-
to
(str
) –mac | linux
Returns:
-
None
–None
Source code in lovis4u/Methods.py
copy_package_data()
Copy the lovis4u package data folder to your current dir.
Returns:
-
None
–None
Source code in lovis4u/Methods.py
download_file_with_progress(url, local_folder)
Function for downloading a particular file from a web server.
Parameters:
Returns:
-
None
–None
Source code in lovis4u/Methods.py
feature_nt_to_x_transform(nt_start, nt_end, feature_strand, locus, layout)
Transform feature coordinates to x page coordinates.
Parameters:
-
nt_start
(int
) –1-based nucleotide start coordinate.
-
nt_end
(int
) –1-based nucleotide end coordinate.
-
feature_strand
(int
) –1 | -1 corresponding to plus or minus strand, respectively.
-
locus
(Locus
) –Corresponding locus object.
-
layout
(dict
) –Layout of the canvas.
Returns:
-
dict
(dict
) –Dictionary with corresponding start and end page coordinates.
Source code in lovis4u/Methods.py
get_HMM_models(parameters)
Download HMM models
Returns:
-
None
–None
Source code in lovis4u/Methods.py
get_colour(name, parameters)
Get HEX colour by its name
Parameters:
Returns:
-
str
(str
) –HEX colour.
Source code in lovis4u/Methods.py
get_colour_rgba(name, parameters)
Get rgba colour by its name
Parameters:
Returns:
-
tuple
(tuple
) –RGBA colour
Source code in lovis4u/Methods.py
nt_to_x_transform(nt, locus, layout, mode)
Transform nucleotide coordinate to x page coordinate.
Parameters:
-
nt
(int
) –Nucleotide coordinate.
-
locus
(Locus
) –Corresponding locus object.
-
layout
(dict
) –Layout of the canvas.
-
mode
(str
) –Mode whether coordinate should be centered to the nt or on the side.
Returns:
-
float
(float
) –Corresponding page coordinate.
Source code in lovis4u/Methods.py
region_nt_to_x_transform(nt_start, nt_end, locus, layout)
Transform region coordinates to x page coordinates.
Parameters:
-
nt_start
(int
) –1-based nucleotide start coordinate.
-
nt_end
(int
) –1-based nucleotide end coordinate.
-
locus
(Locus
) –Corresponding locus object.
-
layout
(dict
) –Layout of the canvas.
Returns:
-
dict
(dict
) –Dictionary with corresponding start and end page coordinates.
Source code in lovis4u/Methods.py
run_pyhmmer(query_fasta, query_size, prms)
Run pyhmmer hmmscan for a set of query proteins
Parameters:
-
query_fasta
(str
) –Path to a query fasta file.
-
query_size
(int
) –Number of query proteins.
-
prms
(Parameters
) –Parameters class object that holds all arguments.
Returns:
-
DataFrame
–pd.DataFrame: Table with hmmscan search results.
Source code in lovis4u/Methods.py
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
|
scale_lightness(hex_c, scale_l)
Helper function to get darker version of input colour
Parameters:
Returns:
-
str
(str
) –new HEX colour
Source code in lovis4u/Methods.py
str_font_size_to_height(font_size, font_type)
Transform string font size to height.
Parameters:
-
font_size
(float
) –font_size.
-
font_type
(str
) –font type (see config file; at this moment only regular is available).
Returns:
-
float
(float
) –height of the string.
Source code in lovis4u/Methods.py
str_height_to_size(height, font_type)
Transform string height to the font size.
Parameters:
-
height
(float
) –available height of the string.
-
font_type
(str
) –font type (see config file; at this moment only regular is available).
Returns:
-
float
(float
) –font size defined by height.
Source code in lovis4u/Methods.py
update_path_extension(path, new_extension)
Get path basename and replace its extension
Parameters:
Returns:
-
str
(str
) –basename of a file with new extension.