1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 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 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 1326 1327 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 1464 1465 1466 1467 1468 1469 1470 1471 1472
|
/* File: alignmenttool.c
* Author: Gemma Barson, 2010-09-02
* Copyright (c) 2010 - 2012 Genome Research Ltd
* ---------------------------------------------------------------------------
* SeqTools is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see the on-line version at http://www.gnu.org/copyleft/gpl.txt
* ---------------------------------------------------------------------------
* This file is part of the SeqTools sequence analysis package,
* written by
* Gemma Barson (Sanger Institute, UK) <gb10@sanger.ac.uk>
*
* based on original code by
* Erik Sonnhammer (SBC, Sweden) <Erik.Sonnhammer@sbc.su.se>
*
* and utilizing code taken from the AceDB and ZMap packages, written by
* Richard Durbin (Sanger Institute, UK) <rd@sanger.ac.uk>
* Jean Thierry-Mieg (CRBM du CNRS, France) <mieg@kaa.crbm.cnrs-mop.fr>
* Ed Griffiths (Sanger Institute, UK) <edgrif@sanger.ac.uk>
* Roy Storey (Sanger Institute, UK) <rds@sanger.ac.uk>
* Malcolm Hinsley (Sanger Institute, UK) <mh17@sanger.ac.uk>
*
* Description: Creates the alignment tool window for a Dotter window.
* The alignment tool shows the sequence data for the currently-
* selected coordinates in the main Dotter window that it is
* associated with. The two windows work together so that when the
* selected coords are changed on one window they are updated on
* the other. The alignment tool is owned by the Dotter window and
* will be destroyed when the Dotter window is closed.
*----------------------------------------------------------------------------
*/
#include <dotterApp/dotter_.hpp>
#include <seqtoolsUtils/utilities.hpp>
#include <gtk/gtk.h>
#include <math.h>
#include <string.h>
#include <gdk/gdkkeysyms.h>
static int atob[] /* OLD (starting at 1) ASCII-to-binary translation table (Inherited from blast) */
= {
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,24,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA, 1,21, 5, 4, 7,14, 8, 9,10,NA,12,11,13, 3,NA,
15, 6, 2,16,17,NA,20,18,23,19,22,NA,NA,NA,NA,NA,
NA, 1,21, 5, 4, 7,14, 8, 9,10,NA,12,11,13, 3,NA,
15, 6, 2,16,17,NA,20,18,23,19,22,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,
NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA
};
#define DEFAULT_ALIGNMENT_LENGTH 125 /* default number of sequence chars to display in the alignment tool */
#define MIN_ALIGNMENT_LENGTH 0 /* min number of sequence chars to display in the alignment tool */
#define SELECTED_COORD_MARKER_HEIGHT 12 /* the height of the marker that indicates the currently-selected coord */
/* Function pointer for expose functions */
typedef gboolean (*ExposeFunc)(GtkWidget *widget, GdkEventExpose *event, gpointer data);
class SequenceProperties
{
public:
GtkWidget *widget;
const char *seqName;
const char *sequence;
BlxSeqType seqType; /* whether this sequence is in nucleotide or peptide coords */
BlxStrand strand;
int frame;
IntRange *displayRange; /* the displayed range; pointer to refDisplayRange or matchDisplayRange */
IntRange *fullRange; /* the full range of the sequence; pointer to refSeqRange or matchSeqRange */
IntRange fullRangeDisplayCoords; /* the full range of the sequence in display coords (i.e. converted to peptide coords where appropriate) */
gboolean scaleReversed; /* whether the scale for this sequence is shown reversed (i.e. high-to-low rather than low-to-high) */
GSList *compSeqs; /* list of other sequence widgets that this sequence will be compared against */
gboolean horizontal; /* true if this is the horizontal (ref) seq, false if it's the vertical (match) seq */
};
class AlignmentToolProperties
{
public:
GtkWidget *widget;
GtkWidget *alignmentWindow; /* the toplevel window the greyrampTool will be in IF
* undocked from the main window */
int alignmentLen; /* the number of coords wide the alignment too displays */
IntRange refDisplayRange; /* the current ref seq range displayed in the tool */
IntRange matchDisplayRange; /* the current match seq range displayed in the tool */
gboolean dragging; /* true when a drag is in progress */
int dragStart; /* set to the start coord where the user initiates a drag */
GtkWidget *selectionWidget; /* text in this widget should be highlighted (null if none) */
IntRange selectionRange;
DotterWindowContext *dotterWinCtx;
gboolean spliceSitesOn;
};
/* Local function declarations */
static void drawSequence(GdkDrawable *drawable, GtkWidget *widget, GtkWidget *alignmentTool);
static void drawSequenceHeader(GtkWidget *widget, GtkWidget *alignmentTool, GdkDrawable *drawable, const gboolean horizontal);
static int getSequenceOffset(SequenceProperties *properties, DotterContext *dc);
static int getCoordAtPos(const int x, GtkWidget *sequenceWidget, GtkWidget *alignmentTool);
static void connectSequenceSignals(GtkWidget *widget, GtkWidget *alignmentTool);
static void sequenceInitiateDragging(GtkWidget *sequenceWidget, GtkWidget *alignmentTool, const int x);
static void sequenceFinishDragging(GtkWidget *sequenceWidget, GtkWidget *alignmentTool, const int x);
static void highlightSequenceBase(SequenceProperties *seq1, AlignmentToolProperties *atProperties, DotterWindowContext *dwc, const int displayIdx, const int seq1Idx, const int seq1Start, const gboolean highlight, GdkGC *gc, GdkDrawable *drawable);
static void selectVisibleSequence(GtkWidget *sequenceWidget, GtkWidget *alignmentTool);
static int getDisplayStart(SequenceProperties *properties, DotterContext *dc);
static char* getSequenceBetweenCoords(GtkWidget *sequenceWidget, const int startCoord, const int endCoord, DotterWindowContext *dwc);
static int getSequenceStart(SequenceProperties *properties, DotterContext *dc, const gboolean convertToDisplayCoords);
static int getSequenceEnd(SequenceProperties *properties, DotterContext *dc, const gboolean convertToDisplayCoords);
static gboolean onDeleteAlignmentTool(GtkWidget *widget, GdkEvent *event, gpointer data);
static void highlightSpliceSite(SequenceProperties *seq1,
AlignmentToolProperties *atProperties,
DotterWindowContext *dwc,
const int coord,
const gboolean isStart,
GdkGC *gc,
GdkDrawable *drawable);
/***********************************************************
* Properties *
***********************************************************/
static SequenceProperties* sequenceGetProperties(GtkWidget *widget)
{
return widget ? (SequenceProperties*)(g_object_get_data(G_OBJECT(widget), "SequenceProperties")) : NULL;
}
static void onDestroySequenceWidget(GtkWidget *widget)
{
SequenceProperties *properties = sequenceGetProperties(widget);
if (properties)
{
g_object_set_data(G_OBJECT(widget), "SequenceProperties", NULL);
delete properties;
properties = NULL;
}
}
static void sequenceCreateProperties(GtkWidget *widget,
DotterContext *dc,
const char *seqName,
const char *sequence,
const BlxSeqType seqType,
const BlxStrand strand,
const int frame,
IntRange *displayRange,
IntRange *fullRange,
gboolean scaleReversed,
GSList *compSeqs,
gboolean horizontal)
{
if (widget)
{
SequenceProperties *properties = new SequenceProperties;
properties->widget = widget;
properties->seqName = seqName;
properties->sequence = sequence;
properties->seqType = seqType;
properties->strand = strand;
properties->frame = frame;
properties->displayRange = displayRange;
properties->fullRange = fullRange;
properties->scaleReversed = scaleReversed;
properties->compSeqs = compSeqs;
properties->horizontal = horizontal;
properties->fullRangeDisplayCoords.set(getSequenceStart(properties, dc, TRUE),
getSequenceEnd(properties, dc, TRUE));
g_object_set_data(G_OBJECT(widget), "SequenceProperties", properties);
g_signal_connect(G_OBJECT(widget), "destroy", G_CALLBACK(onDestroySequenceWidget), NULL);
}
}
static AlignmentToolProperties* alignmentToolGetProperties(GtkWidget *widget)
{
return widget ? (AlignmentToolProperties*)(g_object_get_data(G_OBJECT(widget), "AlignmentToolProperties")) : NULL;
}
static void onDestroyAlignmentTool(GtkWidget *widget)
{
AlignmentToolProperties *properties = alignmentToolGetProperties(widget);
if (properties)
{
g_object_set_data(G_OBJECT(widget), "AlignmentToolProperties", NULL);
delete properties;
properties = NULL;
}
}
static void alignmentToolCreateProperties(GtkWidget *widget,
GtkWidget *alignmentWindow,
DotterWindowContext *dotterWinCtx)
{
if (widget)
{
AlignmentToolProperties *properties = new AlignmentToolProperties;
properties->widget = widget;
properties->alignmentWindow = alignmentWindow;
properties->dotterWinCtx = dotterWinCtx;
properties->alignmentLen = DEFAULT_ALIGNMENT_LENGTH;
properties->refDisplayRange.set(0, 20);
properties->matchDisplayRange.set(0, 20); /* to do: put real values in here for the ranges */
properties->dragging = FALSE;
properties->dragStart = 0;
properties->selectionWidget = NULL;
properties->spliceSitesOn = TRUE;
g_object_set_data(G_OBJECT(widget), "AlignmentToolProperties", properties);
g_signal_connect(G_OBJECT(widget), "destroy", G_CALLBACK(onDestroyAlignmentTool), NULL);
}
}
/***********************************************************
* Events *
***********************************************************/
void alignmentToolRedrawAll(GtkWidget *alignmentTool)
{
callFuncOnAllChildWidgets(alignmentTool, (gpointer)widgetClearCachedDrawable);
gtk_widget_queue_draw(alignmentTool);
}
/* Called when the alignment tool window changes size */
static void onSizeAllocateAlignmentTool(GtkWidget *alignmentTool, GtkAllocation *allocation, gpointer data)
{
alignmentToolRedrawAll(alignmentTool);
}
/* Expose function for a widget containing a section of sequence. SequenceProperties should
* be set on any widget that this is to be called for. */
static gboolean onExposeSequence(GtkWidget *widget, GdkEventExpose *event, gpointer data)
{
GtkWidget *alignmentTool = GTK_WIDGET(data);
GdkWindow *drawable = widgetGetDrawable(widget);
if (!drawable)
{
drawable = createBlankPixmap(widget);
drawSequence(drawable, widget, alignmentTool);
}
if (drawable)
{
GdkGC *gc = gdk_gc_new(widget->window);
gdk_draw_drawable(widget->window, gc, drawable, 0, 0, 0, 0, -1, -1);
g_object_unref(gc);
}
return TRUE;
}
/* Expose function for a widget containing a reference sequence header. */
static gboolean onExposeRefSequenceHeader(GtkWidget *widget, GdkEventExpose *event, gpointer data)
{
GtkWidget *alignmentTool = GTK_WIDGET(data);
GdkDrawable *drawable = widgetGetDrawable(widget);
if (!drawable)
{
drawable = createBlankPixmap(widget);
drawSequenceHeader(widget, alignmentTool, drawable, TRUE);
}
if (drawable)
{
GdkGC *gc = gdk_gc_new(widget->window);
gdk_draw_drawable(widget->window, gc, drawable, 0, 0, 0, 0, -1, -1);
g_object_unref(gc);
}
return TRUE;
}
/* Expose function for a widget containing a match sequence header. */
static gboolean onExposeMatchSequenceHeader(GtkWidget *widget, GdkEventExpose *event, gpointer data)
{
GtkWidget *alignmentTool = GTK_WIDGET(data);
GdkDrawable *drawable = widgetGetDrawable(widget);
if (!drawable)
{
drawable = createBlankPixmap(widget);
drawSequenceHeader(widget, alignmentTool, drawable, FALSE);
}
if (drawable)
{
GdkGC *gc = gdk_gc_new(widget->window);
gdk_draw_drawable(widget->window, gc, drawable, 0, 0, 0, 0, -1, -1);
g_object_unref(gc);
}
return TRUE;
}
/* This should be called when the range displayed by the alignment tool has changed */
static void onAlignmentToolRangeChanged(GtkWidget *alignmentTool)
{
alignmentToolRedrawAll(alignmentTool);
}
/* Mouse button handler when clicking on a sequence */
static gboolean onButtonPressSequence(GtkWidget *sequenceWidget, GdkEventButton *event, gpointer data)
{
gboolean handled = FALSE;
if (event->type == GDK_BUTTON_PRESS && event->button == 1) /* left click */
{
GtkWidget *alignmentTool = GTK_WIDGET(data);
sequenceInitiateDragging(sequenceWidget, alignmentTool, event->x);
handled = TRUE;
}
else if (event->type == GDK_2BUTTON_PRESS && event->button == 1) /* left double-click */
{
GtkWidget *alignmentTool = GTK_WIDGET(data);
selectVisibleSequence(sequenceWidget, alignmentTool);
handled = TRUE;
}
return handled;
}
/* Mouse button handler when releasing from a click on a sequence widget */
static gboolean onButtonReleaseSequence(GtkWidget *sequenceWidget, GdkEventButton *event, gpointer data)
{
gboolean handled = FALSE;
if (event->button == 1) /* left click */
{
GtkWidget *alignmentTool = GTK_WIDGET(data);
sequenceFinishDragging(sequenceWidget, alignmentTool, event->x);
handled = TRUE;
}
return handled;
}
static gboolean onMouseMoveSequence(GtkWidget *sequenceWidget, GdkEventMotion *event, gpointer data)
{
gboolean handled = FALSE;
if (event->state & GDK_BUTTON1_MASK) /* left drag */
{
/* Update the current selection range */
GtkWidget *alignmentTool = GTK_WIDGET(data);
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
if (atProperties)
{
const int newCoord = getCoordAtPos(event->x, sequenceWidget, alignmentTool);
atProperties->selectionRange.set(atProperties->dragStart, newCoord);
widgetClearCachedDrawable(sequenceWidget, NULL);
gtk_widget_queue_draw(sequenceWidget);
handled = TRUE;
}
}
return handled;
}
void alignmentToolSetSpliceSitesOn(GtkWidget *alignmentTool, const gboolean spliceSitesOn)
{
if (alignmentTool)
{
AlignmentToolProperties *properties = alignmentToolGetProperties(alignmentTool);
if (properties)
{
properties->spliceSitesOn = spliceSitesOn;
alignmentToolRedrawAll(alignmentTool);
}
}
}
gboolean alignmentToolGetSpliceSitesOn(GtkWidget *alignmentTool)
{
gboolean result = FALSE;
if (alignmentTool)
{
AlignmentToolProperties *properties = alignmentToolGetProperties(alignmentTool);
if (properties)
result = properties->spliceSitesOn;
}
return result;
}
/***********************************************************
* Get/set functions *
***********************************************************/
/* Set the alignment range centre based on the currently-selected match/ref seq coord. */
void updateAlignmentRange(GtkWidget *alignmentTool, DotterWindowContext *dwc)
{
AlignmentToolProperties *properties = alignmentToolGetProperties(alignmentTool);
if (properties && dwc && dwc->dotterCtx)
{
DotterContext *dc = dwc->dotterCtx;
/* Re-create the range, centred on the set coordinate and with the alignment tool's alignment
* length. Note that the length is the number of display chars but the reference sequence is
* in nucleotide coords so needs converting. (The match sequence is always in display coords so
* will be correct whether we're displaying nucleotides or peptides.) */
int len = properties->alignmentLen * getResFactor(dc, TRUE);
int offset = ceil((double)properties->alignmentLen / 2.0) * getResFactor(dc, TRUE);
properties->refDisplayRange.setMin(dwc->refCoord - offset);
properties->refDisplayRange.setMax(properties->refDisplayRange.min() + len); //uses updated min
len = properties->alignmentLen * getResFactor(dc, FALSE);
offset = ceil((double)properties->alignmentLen / 2.0) * getResFactor(dc, FALSE);
properties->matchDisplayRange.setMin(dwc->matchCoord - offset);
properties->matchDisplayRange.setMax(properties->matchDisplayRange.min() + len); //uses updated min
}
}
/***********************************************************
* Initialisation *
***********************************************************/
/* Create a widget that will display the reference sequence for the given
* frame/strand. Add it to the given row in the given table and increment
* the row number. Also add it to the given refSeqList */
static void createRefSeqWidget(GtkWidget *alignmentTool,
AlignmentToolProperties *properties,
const int frame,
const BlxStrand strand,
const char strandChar,
GSList *matchSeqList,
GtkTable *table,
const int xpad,
const int ypad,
int *row,
GSList **refSeqList)
{
g_return_if_fail(properties->dotterWinCtx && properties->dotterWinCtx->dotterCtx) ;
DotterContext *dc = properties->dotterWinCtx->dotterCtx;
/* Create a label containing the name */
char *text = g_strdup_printf("%s (%c%d):", dc->refSeqName, strandChar, frame);
GtkWidget *label = createLabel(text, 0.0, 0.0, FALSE, TRUE, TRUE);
labelSetFont(label, dc->fontDesc);
g_free(text);
gtk_table_attach(table, label, 1, 2, *row, *row + 1, GTK_FILL, GTK_SHRINK, xpad, ypad);
/* Find which sequence is applicable (fwd or rev strand or translated peptide seq) */
char *sequence = dc->refSeq;
if (dc->displaySeqType == BLXSEQ_DNA && strand == BLXSTRAND_REVERSE)
sequence = dc->refSeqRev;
else if (dc->blastMode == BLXMODE_BLASTX)
sequence = dc->peptideSeqs[frame - 1];
/* Create the widget that will render the sequence data. */
GtkWidget *refSeqWidget = gtk_drawing_area_new();
gtk_widget_set_size_request(refSeqWidget, -1, roundNearest(dc->charHeight));
*refSeqList = g_slist_append(*refSeqList, refSeqWidget);
sequenceCreateProperties(refSeqWidget, dc, dc->refSeqName, sequence, dc->refSeqType, strand,
frame, &properties->refDisplayRange, &dc->refSeqFullRange,
dc->hozScaleRev, matchSeqList, TRUE);
gtk_table_attach(table, refSeqWidget, 2, 3, *row, *row + 1, GTK_FILL, GTK_SHRINK, xpad, ypad);
gtk_widget_add_events(refSeqWidget, GDK_EXPOSURE_MASK);
connectSequenceSignals(refSeqWidget, alignmentTool);
*row += 1;
}
/* Create a drawing-area widget and add it to the given table in the
* given row. Increments the row number when done. the given expose
* function will draw the widget. */
static void createDrawingAreaWidget(DotterContext *dc,
GCallback exposeFunc,
gpointer exposeFuncData,
const int height,
GtkTable *table,
const int xpad,
const int ypad,
int *row)
{
g_return_if_fail(exposeFunc) ;
GtkWidget *widget = gtk_drawing_area_new();
gtk_widget_set_size_request(widget, -1, height);
gtk_table_attach(table, widget, 2, 3, *row, *row + 1, (GtkAttachOptions)(GTK_EXPAND | GTK_FILL), GTK_SHRINK, xpad, ypad);
g_signal_connect(G_OBJECT(widget), "expose-event", exposeFunc, exposeFuncData);
*row += 1;
}
/* Create the section of the alignment tool for the given strand */
static GtkWidget* createAlignmentToolSection(BlxStrand strand,
GtkWidget *alignmentTool,
AlignmentToolProperties *properties)
{
g_return_val_if_fail(properties && properties->dotterWinCtx && properties->dotterWinCtx->dotterCtx, NULL) ;
/* We'll pack everything into a table */
DotterContext *dc = properties->dotterWinCtx->dotterCtx;
const int numRows = dc->numFrames + 3; /* 2 rows for the headers, 1 for the sseq and 1 for each ref seq frame */
const int numCols = 2; /* 2 columns: label and sequence */
const int xpad = 2;
const int ypad = 0;
const char strandChar = (strand == BLXSTRAND_FORWARD ? '+' : '-');
GtkTable *table = GTK_TABLE(gtk_table_new(numRows, numCols, FALSE));
int row = 0;
/* Create the widget that will render the match sequence. Need to do this first so we can pass
* it as data to the ref sequence widgets. */
GtkWidget *matchSeqWidget = gtk_drawing_area_new();
gtk_widget_set_size_request(matchSeqWidget, -1, roundNearest(dc->charHeight));
/* We need to create a list of match seqs (just one entry) and ref seqs to pass as data to the
* ref seq and match seq respectively. */
GSList *matchSeqList = NULL;
matchSeqList = g_slist_append(matchSeqList, matchSeqWidget);
GSList *refSeqList = NULL;
/* Create a header line for this strand of the reference sequence. This widget will display
* the currently-selected ref seq coord. */
createDrawingAreaWidget(dc, G_CALLBACK(onExposeRefSequenceHeader), alignmentTool,
roundNearest(dc->charHeight) + SELECTED_COORD_MARKER_HEIGHT,
table, xpad, ypad, &row);
/* Add a line for each frame of the reference sequence */
int frame = 1;
for (frame = 1; frame <= dc->numFrames; ++frame)
{
createRefSeqWidget(alignmentTool, properties, frame, strand, strandChar, matchSeqList, table, xpad, ypad, &row, &refSeqList);
}
/* Add a label for the match sequence */
char *text = g_strdup_printf("%s:", dc->matchSeqName);
GtkWidget *label = createLabel(text, 0.0, 0.0, FALSE, TRUE, TRUE);
labelSetFont(label, dc->fontDesc);
g_free(text);
gtk_table_attach(table, label, 1, 2, row, row + 1, GTK_FILL, GTK_SHRINK, xpad, ypad);
/* Now add the data to the match-sequence widget and add it to the bottom row of the table */
char *matchSequence = dc->matchSeqStrand == BLXSTRAND_REVERSE ? dc->matchSeqRev : dc->matchSeq;
sequenceCreateProperties(matchSeqWidget, dc, dc->matchSeqName, matchSequence, dc->matchSeqType, dc->matchSeqStrand,
1, &properties->matchDisplayRange, &dc->matchSeqFullRange, dc->vertScaleRev, refSeqList, FALSE);
gtk_table_attach(table, matchSeqWidget, 2, 3, row, row + 1, GTK_FILL, GTK_SHRINK, xpad, ypad);
gtk_widget_add_events(matchSeqWidget, GDK_EXPOSURE_MASK);
connectSequenceSignals(matchSeqWidget, alignmentTool);
++row;
/* Create the bottom label. This will display the currently-selected match seq coord. */
createDrawingAreaWidget(dc, G_CALLBACK(onExposeMatchSequenceHeader), alignmentTool,
roundNearest(dc->charHeight) + SELECTED_COORD_MARKER_HEIGHT + roundNearest(dc->charHeight), /* extra charheight for spacing */
table, xpad, ypad, &row);
/* Make sure neither header is focused at the start because if it is
* then its text will be selected and we will inadvertently overwrite the
* contents of the primary clipboard. */
gtk_container_set_focus_child(GTK_CONTAINER(table), matchSeqWidget);
return GTK_WIDGET(table);
}
/* Create a window to hold the alignment tool when it is un-docked */
static GtkWidget *createAlignmentToolWindow(DotterWindowContext *dwc, GtkWidget *alignmentTool)
{
g_return_val_if_fail(dwc && alignmentTool, NULL) ;
GtkWidget *alignmentWindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_default_size(GTK_WINDOW(alignmentWindow), 1160, -1);
char *title = g_strdup_printf("%sAlignment tool", dotterGetTitlePrefix(dwc->dotterCtx));
gtk_window_set_title(GTK_WINDOW(alignmentWindow), title);
g_free(title);
g_signal_connect(G_OBJECT(alignmentWindow), "delete-event", G_CALLBACK(onDeleteAlignmentTool), alignmentTool);
return alignmentWindow;
}
/* Return the alignment tool widget and set the return widget to be a window that it can be
* undocked into. */
GtkWidget* createAlignmentTool(DotterWindowContext *dotterWinCtx, GtkWidget **alignmentWindow_out)
{
g_return_val_if_fail(dotterWinCtx, NULL) ;
DEBUG_ENTER("createAlignmentTool");
/* We'll put everything in a vbox, inside a frame */
GtkWidget *alignmentTool = gtk_frame_new(NULL);
gtk_frame_set_shadow_type(GTK_FRAME(alignmentTool), GTK_SHADOW_ETCHED_IN);
GtkWidget *vbox = gtk_vbox_new(FALSE, 0);
gtk_container_add(GTK_CONTAINER(alignmentTool), vbox);
GtkWidget *alignmentWindow = createAlignmentToolWindow(dotterWinCtx, alignmentTool);
/* Remember the headers so we can store them in the properties. We'll need to update them
* when the range updates since they contain the centre coord of the current display range. */
alignmentToolCreateProperties(alignmentTool, alignmentWindow, dotterWinCtx);
AlignmentToolProperties *properties = alignmentToolGetProperties(alignmentTool);
if (properties && properties->dotterWinCtx && properties->dotterWinCtx->dotterCtx)
{
DotterContext *dc = properties->dotterWinCtx->dotterCtx;
/* Put the forward ref seq strand on top, unless the display is reversed */
BlxStrand qStrand = dc->hozScaleRev ? BLXSTRAND_REVERSE : BLXSTRAND_FORWARD;
GtkWidget *section1 = createAlignmentToolSection(qStrand, alignmentTool, properties);
gtk_box_pack_start(GTK_BOX(vbox), section1, FALSE, FALSE, 0);
/* Only show the other reference sequence strand if we're displaying sequences as nucleotides */
if (dc->displaySeqType == BLXSEQ_DNA)
{
qStrand = (qStrand == BLXSTRAND_FORWARD ? BLXSTRAND_REVERSE : BLXSTRAND_FORWARD);
GtkWidget *section2 = createAlignmentToolSection(qStrand, alignmentTool, properties);
gtk_box_pack_start(GTK_BOX(vbox), section2, FALSE, FALSE, 0);
}
gtk_widget_add_events(alignmentTool, GDK_BUTTON_PRESS_MASK);
gtk_widget_add_events(alignmentTool, GDK_KEY_PRESS_MASK);
g_signal_connect(G_OBJECT(alignmentTool), "size-allocate", G_CALLBACK(onSizeAllocateAlignmentTool), NULL);
gtk_widget_show_all(alignmentTool);
onAlignmentToolRangeChanged(alignmentTool);
if (alignmentWindow_out)
*alignmentWindow_out = alignmentWindow;
}
DEBUG_EXIT("createAlignmentTool returning ");
return alignmentTool;
}
/***********************************************************
* Drawing *
***********************************************************/
/* Highlight splice site dinucleotides for known HSPs */
static void drawSequenceSpliceSites(GdkDrawable *drawable,
GtkWidget *widget,
GtkWidget *alignmentTool,
SequenceProperties *seq1,
GdkGC *gc)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
if (!atProperties || !drawable || !gc || !seq1 || !atProperties->spliceSitesOn)
return;
DotterWindowContext *dwc = atProperties->dotterWinCtx;
DotterContext *dc = atProperties->dotterWinCtx->dotterCtx;
/* Only do highlighting if both seqs are DNA */
if (dc->matchSeqType != BLXSEQ_DNA || dc->refSeqType != BLXSEQ_DNA)
return;
/* Only do the highlighting in the reference sequence */
if (!seq1 || !seq1->seqName || !dc->refSeqName || strcmp(seq1->seqName, dc->refSeqName) != 0)
return;
/* Loop through each MSP looking for one that has the relevant sequence name, and has start/end
* within the current visible range */
MSP *msp = dc->mspList;
for ( ; msp; msp = msp->next)
{
const char *mspName = msp->sname;
if (!mspName ||
msp->type != BLXMSP_MATCH ||
msp->qStrand != seq1->strand ||
strcmp(mspName, dc->matchSeqName))
{
/* Not an MSP from our match sequence */
continue;
}
/* If the splice site adjacent to the start coord is within range then highlight it */
if (valueWithinRange(msp->qRange.min() - 1, seq1->displayRange) ||
valueWithinRange(msp->qRange.min() - 2, seq1->displayRange))
{
/* Get the leftmost coord (for rev strand this is the max of the two coords) */
int coord = seq1->strand == BLXSTRAND_REVERSE ? msp->qRange.min() - 1 : msp->qRange.min() - 2;
gboolean isStart = (seq1->strand == BLXSTRAND_FORWARD);
highlightSpliceSite(seq1, atProperties, dwc, coord, isStart, gc, drawable);
}
/* If the splice site adjacent to the end coord is within range then highlight it */
if (valueWithinRange(msp->qRange.max() + 1, seq1->displayRange) ||
valueWithinRange(msp->qRange.max() + 2, seq1->displayRange))
{
/* Get the leftmost coord (for rev strand this is the max of the two coords) */
int coord = seq1->strand == BLXSTRAND_REVERSE ? msp->qRange.max() + 2 : msp->qRange.max() + 1;
gboolean isEnd = (seq1->strand == BLXSTRAND_FORWARD);
highlightSpliceSite(seq1, atProperties, dwc, coord, !isEnd, gc, drawable);
}
}
}
/* Set the alignment length based on the given widget's width. Note that this is called multiple
* times redundantly (once for each sequence widget and once for each header widget). Ideally
* we'd call this once after any change in window size, but we need to know the width allocation
* for the sequence/header widgets to do that. At the moment it's not worth doing the code
* reorganisation to do that so this just gets called on each widget before it gets drawn. */
static void setAlignmentLength(GtkWidget *widget, GtkWidget *alignmentTool, AlignmentToolProperties *properties)
{
g_return_if_fail(widget && properties && properties->dotterWinCtx && properties->dotterWinCtx->dotterCtx);
/* Get the length of the sequence we can display i.e. number of chars wide the widget is */
properties->alignmentLen = widget->allocation.width / properties->dotterWinCtx->dotterCtx->charWidth;
if (properties->alignmentLen < MIN_ALIGNMENT_LENGTH)
properties->alignmentLen = MIN_ALIGNMENT_LENGTH;
/* The display code assumes we always have an odd length; if we
* are given an even length, round it down */
if (properties->alignmentLen % 2 == 0)
--properties->alignmentLen;
updateAlignmentRange(alignmentTool, properties->dotterWinCtx);
}
/* Draw the sequence data for the given sequence-widget. Draws the text and highlights each base
* according to how well it matches */
static void drawSequence(GdkDrawable *drawable, GtkWidget *widget, GtkWidget *alignmentTool)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
SequenceProperties *seq1 = sequenceGetProperties(widget);
g_return_if_fail(atProperties && atProperties->dotterWinCtx && atProperties->dotterWinCtx->dotterCtx && seq1) ;
DotterWindowContext *dwc = atProperties->dotterWinCtx;
DotterContext *dc = atProperties->dotterWinCtx->dotterCtx;
/* Set the alignment length from the widget width */
setAlignmentLength(widget, alignmentTool, atProperties);
GdkGC *gc = gdk_gc_new(drawable);
const int seq1Len = strlen(seq1->sequence);
/* If text on this widget is selected, then we'll highlight any bases within
* the selection range. */
const gboolean highlight = (atProperties->selectionWidget == widget);
/* Get the sequence coord at the start of the display (leftmost edge) */
int seq1Start = getDisplayStart(seq1, dc);
const int seq1Offset = getSequenceOffset(seq1, dc);
/* Loop through each display coord (0-based from left edge of display) */
int displayIdx = 0;
char seq1Text[atProperties->alignmentLen + 1];
for ( ; displayIdx <= atProperties->alignmentLen; ++displayIdx)
{
seq1Text[displayIdx] = ' ';
/* Get the 0-based index into sequence 1 and extract the character at this index */
const int seq1Idx = displayIdx - seq1Offset;
if (seq1Idx >= 0 && seq1Idx < seq1Len)
{
seq1Text[displayIdx] = seq1->sequence[seq1Idx];
highlightSequenceBase(seq1, atProperties, dwc, displayIdx, seq1Idx, seq1Start, highlight, gc, drawable);
}
}
/* terminate the display text string */
seq1Text[displayIdx] = '\0';
/* Highlight splice sites */
drawSequenceSpliceSites(drawable, widget, alignmentTool, seq1, gc);
/* Draw the sequence text over the top of any highlighting */
PangoLayout *layout = gtk_widget_create_pango_layout(widget, seq1Text);
pango_layout_set_font_description(layout, dc->fontDesc);
if (layout)
{
gtk_paint_layout(widget->style, drawable, GTK_STATE_NORMAL, TRUE, NULL, widget, NULL, 0, 0, layout);
g_object_unref(layout);
}
g_object_unref(gc);
}
/* Utility called by drawSequenceHeader to draw a marker line at the given coords */
static void drawSequenceHeaderMarker(GdkDrawable *drawable, const int x, const int y, const gdouble charWidth)
{
g_return_if_fail(drawable) ;
/* Draw a marker line below where the text will go */
const int x1 = x + roundNearest((charWidth / 2.0));
GdkGC *gc = gdk_gc_new(drawable);
gdk_draw_line(drawable, gc, x1, y, x1, y + + SELECTED_COORD_MARKER_HEIGHT);
g_object_unref(gc);
}
/* Utility called by drawSequenceHeader to draw the header text at the given coords */
static void drawSequenceHeaderText(GtkWidget *widget,
GdkDrawable *drawable,
const int x,
const int y,
const int coordIn,
DotterContext *dc,
const gboolean horizontal)
{
g_return_if_fail(widget && drawable && dc) ;
int coord = getDisplayCoord(coordIn, dc, horizontal);
char *displayText = convertIntToString(coord);
PangoLayout *layout = gtk_widget_create_pango_layout(widget, displayText);
pango_layout_set_font_description(layout, dc->fontDesc);
if (layout)
{
/* Offset the text so that the middle of the text is lined up with the coord of interest */
const int offset = ceil((((gdouble)numDigitsInInt(coord) / 2.0) - 1) * dc->charWidth);
gtk_paint_layout(widget->style, drawable, GTK_STATE_NORMAL, TRUE, NULL, widget, NULL, x - offset, y, layout);
g_object_unref(layout);
}
g_free(displayText);
}
/* Draw a sequence header that displays the centre coord of the given display range. If
* markerFirst is true the marker is drawn above the text, otherwise below. */
static void drawSequenceHeader(GtkWidget *widget,
GtkWidget *alignmentTool,
GdkDrawable *drawable,
const gboolean horizontal)
{
AlignmentToolProperties *properties = alignmentToolGetProperties(alignmentTool);
DotterWindowContext *dwc = properties->dotterWinCtx;
g_return_if_fail(widget && properties && dwc && dwc->dotterCtx) ;
DotterContext *dc = dwc->dotterCtx;
/* Make sure the alignment length is up to date */
setAlignmentLength(widget, alignmentTool, properties);
/* Find the coord to display */
const int coord = horizontal ? dwc->refCoord : dwc->matchCoord;
const IntRange* const displayRange = horizontal ? &properties->refDisplayRange : &properties->matchDisplayRange;
/* Find the position to display at. Find the position of the char at this coord */
const int displayIdx = convertToDisplayIdx(coord - displayRange->min(), horizontal, dc, 1, NULL) - 1;
int x = (int)((gdouble)displayIdx * dc->charWidth);
int y = 0;
if (horizontal)
{
/* For the ref sequence, draw the marker below the label. */
drawSequenceHeaderText(widget, drawable, x, y, coord, dc, horizontal);
y += roundNearest(dc->charHeight);
drawSequenceHeaderMarker(drawable, x, y, dc->charWidth);
}
else
{
/* For the match sequence, draw the marker above the label */
drawSequenceHeaderMarker(drawable, x, y, dc->charWidth);
y += SELECTED_COORD_MARKER_HEIGHT;
drawSequenceHeaderText(widget, drawable, x, y, coord, dc, horizontal);
}
}
/***********************************************************
* Utility functions *
***********************************************************/
static gboolean onDeleteAlignmentTool(GtkWidget *widget, GdkEvent *event, gpointer data)
{
GtkWidget *alignmentTool = GTK_WIDGET(data);
AlignmentToolProperties *properties = alignmentToolGetProperties(alignmentTool);
if (properties && properties->dotterWinCtx)
dotterSetToggleMenuStatus(properties->dotterWinCtx, "ToggleAlignment", FALSE);
return TRUE;
}
/* Return the coord that the alignment tool display starts at (adjusted for strand direction
* and converted from dna to peptide coords if applicable). */
static int getDisplayStart(SequenceProperties *properties, DotterContext *dc)
{
g_return_val_if_fail(properties && dc, 0) ;
const gboolean forward = (properties->strand == BLXSTRAND_FORWARD);
int displayStart = forward ? properties->displayRange->min() : properties->displayRange->max();
displayStart = convertToDisplayIdx(displayStart, properties->horizontal, dc, properties->frame, NULL);
return displayStart;
}
/* Return the coord that the alignment tool display ends at (adjusted for strand direction
* and converted from dna to peptide coords if applicable). */
static int getDisplayEnd(SequenceProperties *properties, DotterContext *dc)
{
g_return_val_if_fail(properties && dc, 0) ;
const gboolean forward = (properties->strand == BLXSTRAND_FORWARD);
int displayEnd = forward ? properties->displayRange->max() : properties->displayRange->min();
displayEnd = convertToDisplayIdx(displayEnd, properties->horizontal, dc, properties->frame, NULL);
return displayEnd;
}
/* Get the start coord of the bit of sequence displayed by a given
* sequence widget. Adjusts the start so that we have the correct
* coord for the relevant frame/strand. Converts to display coords
* if requested, otherwise returns the nucleotide coord. */
static int getSequenceStart(SequenceProperties *properties, DotterContext *dc, const gboolean convertToDisplayCoords)
{
g_return_val_if_fail(properties && dc, 0) ;
const gboolean forward = (properties->strand == BLXSTRAND_FORWARD);
/* Get the start coord of the sequence data */
int seqStart = forward ? properties->fullRange->min() : properties->fullRange->max();
/* Offset this coord so that we have the first coord that starts our reading frame */
int reqdFrame = properties->frame;
int frame = UNSET_INT;
convertToDisplayIdx(seqStart, properties->horizontal, dc, 1, &frame);
int offset = reqdFrame - frame;
if (offset < 0)
{
offset += dc->numFrames;
}
seqStart = forward ? seqStart + offset : seqStart - offset;
if (convertToDisplayCoords)
seqStart = convertToDisplayIdx(seqStart, properties->horizontal, dc, reqdFrame, NULL);
return seqStart;
}
/* Get the end coord of the bit of sequence displayed by a given
* sequence widget. Adjusts the end so that we have the correct
* coord for the relevant frame/strand. Converts to display coords
* if requested, otherwise returns the nucleotide coord. */
static int getSequenceEnd(SequenceProperties *properties, DotterContext *dc, const gboolean convertToDisplayCoords)
{
g_return_val_if_fail(properties && dc, 0) ;
const gboolean forward = (properties->strand == BLXSTRAND_FORWARD);
/* Get the end coord of the sequence data */
int seqEnd = forward ? properties->fullRange->max() : properties->fullRange->min();
/* Offset this coord so that we have the last coord that ends our reading frame */
int reqdFrame = properties->frame;
int frame = UNSET_INT;
convertToDisplayIdx(seqEnd, properties->horizontal, dc, dc->numFrames, &frame);
int offset = reqdFrame - frame;
seqEnd = forward ? seqEnd + offset : seqEnd - offset;
if (convertToDisplayCoords)
seqEnd = convertToDisplayIdx(seqEnd, properties->horizontal, dc, reqdFrame, NULL);
return seqEnd;
}
/* Calculate how many bases into the alignment tool's display range the
* given sequence starts. */
static int getSequenceOffset(SequenceProperties *properties, DotterContext *dc)
{
int result = 0;
g_return_val_if_fail(properties && dc, result) ;
const int seqStart = getSequenceStart(properties, dc, TRUE);
/* Calculate the offset. Note that this may be positive or negative because it
* can be in either direction. */
const int displayStart = getDisplayStart(properties, dc);
if (properties->strand == BLXSTRAND_REVERSE)
result = displayStart - seqStart;
else
result = seqStart - displayStart - 1;
return result;
}
/* Get the sequence coordinate at the given x position within the given sequence widget */
static int getCoordAtPos(const int x, GtkWidget *sequenceWidget, GtkWidget *alignmentTool)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
SequenceProperties *properties = sequenceGetProperties(sequenceWidget);
g_return_val_if_fail(atProperties && properties && atProperties->dotterWinCtx && atProperties->dotterWinCtx->dotterCtx, 0) ;
DotterContext *dc = atProperties->dotterWinCtx->dotterCtx;
/* Get the 0-based character index from the leftmost edge of the widget */
const int displayIdx = (int)((double)x / (double)dc->charWidth);
/* Get the coord of the first (leftmost) character in the display */
int displayStart = getDisplayStart(properties, dc);
/* Apply the offset to get the 0-based coord into the sequence, and add the range
* min to get the real coord */
int coord = 0;
if (properties->strand == BLXSTRAND_REVERSE)
coord = displayStart - displayIdx;
else
coord = displayStart + displayIdx + 1;
/* Bounds-limit the result */
boundsLimitValue(&coord, &properties->fullRangeDisplayCoords);
return coord;
}
/* Connect signals for a sequence widget */
static void connectSequenceSignals(GtkWidget *widget, GtkWidget *alignmentTool)
{
g_return_if_fail(widget && alignmentTool) ;
gtk_widget_add_events(widget, GDK_EXPOSURE_MASK);
gtk_widget_add_events(widget, GDK_BUTTON_PRESS_MASK);
gtk_widget_add_events(widget, GDK_BUTTON_RELEASE_MASK);
gtk_widget_add_events(widget, GDK_BUTTON_MOTION_MASK);
g_signal_connect(G_OBJECT(widget), "expose-event", G_CALLBACK(onExposeSequence), alignmentTool);
g_signal_connect(G_OBJECT(widget), "button-press-event", G_CALLBACK(onButtonPressSequence), alignmentTool);
g_signal_connect(G_OBJECT(widget), "button-release-event", G_CALLBACK(onButtonReleaseSequence), alignmentTool);
g_signal_connect(G_OBJECT(widget), "motion-notify-event", G_CALLBACK(onMouseMoveSequence), alignmentTool);
}
/* Get the bit of sequence from the given sequence widget between
* the given coords. Returns a new string which should be freed by
* the caller using g_free. */
static char *getSequenceBetweenCoords(GtkWidget *sequenceWidget,
const int startCoord,
const int endCoord,
DotterWindowContext *dwc)
{
char *result = NULL;
SequenceProperties *properties = sequenceGetProperties(sequenceWidget);
g_return_val_if_fail(properties && dwc && dwc->dotterCtx, result) ;
DotterContext *dc = dwc->dotterCtx;
/* Get the 0-based index into the bit of sequence for this frame/strand */
int startIdx = 0;
const int seqStart = getSequenceStart(properties, dc, TRUE);
if (properties->strand == BLXSTRAND_REVERSE)
startIdx = seqStart - endCoord;
else
startIdx = startCoord - seqStart;
/* Get the length of sequence we want to show */
int numChars = endCoord - startCoord + 1;
/* Sanity check that we're not going to try to index out of range */
if (startIdx + numChars > (int)strlen(properties->sequence))
{
/* We shouldn't get here, but if we do then just limiting
* it to the string length should give something sensible */
numChars = strlen(properties->sequence) - startIdx;
}
result = g_strndup(properties->sequence + startIdx, numChars + 1);
result[numChars] = '\0';
return result;
}
/* Set the widget that contains the current sequence selection. */
static void setSelectionWidget(AlignmentToolProperties *atProperties, GtkWidget *selectionWidget)
{
g_return_if_fail(atProperties) ;
atProperties->selectionWidget = selectionWidget;
dotterEnableSelectionMenus(atProperties->dotterWinCtx, selectionWidget != NULL);
}
/* This clears the current selection */
void alignmentToolClearSequenceSelection(GtkWidget *alignmentTool)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
g_return_if_fail(atProperties) ;
if (atProperties->selectionWidget)
{
/* clear current selection widget and redraw it */
GtkWidget *widget = atProperties->selectionWidget;
setSelectionWidget(atProperties, NULL);
widgetClearCachedDrawable(widget, NULL);
gtk_widget_queue_draw(widget);
}
}
void alignmentToolCopySeln(GtkWidget* alignmentTool)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
g_return_if_fail(atProperties) ;
if (atProperties->selectionWidget)
{
/* copy the selection to the clipboard */
char *text = getSequenceBetweenCoords(atProperties->selectionWidget,
atProperties->selectionRange.min(),
atProperties->selectionRange.max(),
atProperties->dotterWinCtx);
setDefaultClipboardText(text);
setPrimaryClipboardText(text);
g_free(text);
}
}
void alignmentToolCopySelnCoords(GtkWidget *alignmentTool)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
g_return_if_fail(atProperties && atProperties->dotterWinCtx) ;
if (atProperties->selectionWidget)
{
SequenceProperties *properties = sequenceGetProperties(atProperties->selectionWidget);
if (properties)
{
DotterContext *dc = atProperties->dotterWinCtx->dotterCtx;
/* Convert the selected coords to dna coords */
int start = convertToDnaIdx(atProperties->selectionRange.min(), properties->horizontal, dc, properties->frame, 1);
int end = convertToDnaIdx(atProperties->selectionRange.max(), properties->horizontal, dc, properties->frame, dc->numFrames);
/* Negate the coords for display, if necessary */
start = getDisplayCoord(start, dc, properties->horizontal);
end = getDisplayCoord(end, dc, properties->horizontal);
/* Swap start and end if strand is reversed */
if (properties->strand == BLXSTRAND_REVERSE)
{
int tmp = start;
start = end;
end = tmp;
}
char *text = g_strdup_printf("%d, %d", start, end);
setDefaultClipboardText(text);
setPrimaryClipboardText(text);
g_free(text);
}
}
}
/* Initiate dragging on a sequence widget */
static void sequenceInitiateDragging(GtkWidget *sequenceWidget, GtkWidget *alignmentTool, const int x)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
g_return_if_fail(atProperties) ;
/* flag that we're dragging */
atProperties->dragging = TRUE;
atProperties->dragStart = getCoordAtPos(x, sequenceWidget, alignmentTool);
/* flag that we should highlight the selected sequence (clear any current selection first) */
alignmentToolClearSequenceSelection(alignmentTool);
atProperties->selectionRange.set(atProperties->dragStart, atProperties->dragStart);
setSelectionWidget(atProperties, sequenceWidget);
}
/* Finish dragging on a sequence widget */
static void sequenceFinishDragging(GtkWidget *sequenceWidget, GtkWidget *alignmentTool, const int x)
{
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
DotterWindowContext *dwc = atProperties->dotterWinCtx;
g_return_if_fail(atProperties && dwc) ;
if (atProperties->dragging)
{
/* cancel the dragging and highlighting flags */
atProperties->dragging = FALSE;
/* get the range of coords that the user dragged over */
int minCoord = atProperties->dragStart;
int maxCoord = getCoordAtPos(x, sequenceWidget, alignmentTool);
if (minCoord > maxCoord)
{
int tmp = minCoord;
minCoord = maxCoord;
maxCoord = tmp;
}
/* Get the sequence between these coords and place it on the clipboard */
char *result = getSequenceBetweenCoords(sequenceWidget, minCoord, maxCoord, dwc);
setPrimaryClipboardText(result);
g_free(result);
}
}
/* Select all of the visible text in a sequence widget */
static void selectVisibleSequence(GtkWidget *sequenceWidget, GtkWidget *alignmentTool)
{
SequenceProperties *properties = sequenceGetProperties(sequenceWidget);
AlignmentToolProperties *atProperties = alignmentToolGetProperties(alignmentTool);
g_return_if_fail(properties && atProperties && atProperties->dotterWinCtx && atProperties->dotterWinCtx->dotterCtx) ;
DotterContext *dc = atProperties->dotterWinCtx->dotterCtx;
/* cancel any dragging operation */
atProperties->dragging = FALSE;
/* flag that we should highlight the selected sequence (clear any current
* selection first) and set the coords of the highlighted bit */
alignmentToolClearSequenceSelection(alignmentTool);
int start = getDisplayStart(properties, dc);
int end = getDisplayEnd(properties, dc);
if (properties->strand == BLXSTRAND_FORWARD)
{
++start;
++end;
}
boundsLimitValue(&start, &properties->fullRangeDisplayCoords);
boundsLimitValue(&end, &properties->fullRangeDisplayCoords);
atProperties->selectionRange.set(start, end);
setSelectionWidget(atProperties, sequenceWidget);
/* copy the selection to the primary clipboard */
char *result = getSequenceBetweenCoords(sequenceWidget,
atProperties->selectionRange.min(),
atProperties->selectionRange.max(),
atProperties->dotterWinCtx);
setPrimaryClipboardText(result);
g_free(result);
}
/* Get the colour that the given base in the given sequence should
* be highlighted according to how well it matches the other sequences
* at the same display index. */
static DotterColorId getBaseHighlightColor(SequenceProperties *seq1,
DotterContext *dc,
const int displayIdx,
const int seq1Idx,
const int seq1DisplayStart)
{
g_return_val_if_fail(seq1 && dc, DOTCOLOR_BACKGROUND) ;
/* Compare the base in the current sequence to the base at the
* same display position in all other sequences and find whether
* any match. Exact matches take precedence over conserved matches.
* If none match, just use the background colour (i.e. no highlighting). */
DotterColorId colorId = DOTCOLOR_BACKGROUND;
GSList *item = seq1->compSeqs;
for ( ; item; item = item->next)
{
/* Get info about the other sequence */
GtkWidget *seq2Widget = GTK_WIDGET(item->data);
SequenceProperties *seq2 = sequenceGetProperties(seq2Widget);
if (seq2)
{
const int seq2Len = strlen(seq2->sequence);
/* Get the sequence coord at the start of the display (leftmost edge) */
const int seq2Offset = getSequenceOffset(seq2, dc);
/* Get the zero-based index into the sequence and compare the bases to determine the highlight color */
const int seq2Idx = displayIdx - seq2Offset;
if (seq2Idx >= 0 && seq2Idx < seq2Len)
{
if (seq1->sequence[seq1Idx] == seq2->sequence[seq2Idx])
{
colorId = DOTCOLOR_MATCH;
break;
}
else if (dc->blastMode != BLXMODE_BLASTN &&
dc->matrix[atob[(unsigned int)seq1->sequence[seq1Idx]] - 1 ][atob[(unsigned int)seq2->sequence[seq2Idx]] - 1 ] > 0)
{
colorId = DOTCOLOR_CONS;
}
}
}
}
return colorId;
}
static void highlightSpliceSite(SequenceProperties *seq1,
AlignmentToolProperties *atProperties,
DotterWindowContext *dwc,
const int coord,
const gboolean isStart,
GdkGC *gc,
GdkDrawable *drawable)
{
g_return_if_fail(seq1 && atProperties && dwc && dwc->dotterCtx && gc && drawable) ;
DotterContext *dc = dwc->dotterCtx;
/* check if it's canonical (green if yes, red if not) */
DotterColorId colorId = DOTCOLOR_NON_CANONICAL;
int seqIdx = (seq1->strand == BLXSTRAND_REVERSE ? seq1->fullRange->max() - coord : coord - seq1->fullRange->min());
if (isStart && strncasecmp(&seq1->sequence[seqIdx], "ag", 2) == 0)
colorId = DOTCOLOR_CANONICAL;
else if (!isStart && strncasecmp(&seq1->sequence[seqIdx], "gt", 2) == 0)
colorId = DOTCOLOR_CANONICAL;
GdkColor *color = getGdkColor(colorId, dc->defaultColors, FALSE, dwc->usePrintColors);
gdk_gc_set_foreground(gc, color);
int displayIdx = (seq1->strand == BLXSTRAND_REVERSE ? seq1->displayRange->max() - coord : coord - seq1->displayRange->min() - 1);
const int x = (int)((gdouble)displayIdx * dc->charWidth);
gdk_draw_rectangle(drawable, gc, TRUE, x, 0, ceil(dc->charWidth * 2), roundNearest(dc->charHeight));
}
static void highlightSequenceBase(SequenceProperties *seq1,
AlignmentToolProperties *atProperties,
DotterWindowContext *dwc,
const int displayIdx,
const int seq1Idx,
const int seq1Start,
const gboolean highlight,
GdkGC *gc,
GdkDrawable *drawable)
{
g_return_if_fail(seq1 && dwc && dwc->dotterCtx && atProperties && gc && drawable) ;
DotterContext *dc = dwc->dotterCtx;
DotterColorId colorId = getBaseHighlightColor(seq1, dc, displayIdx, seq1Idx, seq1Start);
/* Get the real display coordinate */
int seq1Coord = (seq1->strand == BLXSTRAND_REVERSE ? seq1Start - displayIdx : seq1Start + displayIdx + 1);
const gboolean selected = highlight && valueWithinRange(seq1Coord, &atProperties->selectionRange);
/* We don't need to bother drawing the background if it's the standard
* (non-selected) background color */
if (colorId != DOTCOLOR_BACKGROUND || selected)
{
GdkColor *color = getGdkColor(colorId, dc->defaultColors, selected, dwc->usePrintColors);
gdk_gc_set_foreground(gc, color);
const int x = (int)((gdouble)displayIdx * dc->charWidth);
gdk_draw_rectangle(drawable, gc, TRUE, x, 0, ceil(dc->charWidth), roundNearest(dc->charHeight));
}
}
|