Codebase list python-pauvre / 39b35d3a-4443-49be-8e92-188ce09c2186/main pauvre / redwood.py
39b35d3a-4443-49be-8e92-188ce09c2186/main

Tree @39b35d3a-4443-49be-8e92-188ce09c2186/main (Download .tar.gz)

redwood.py @39b35d3a-4443-49be-8e92-188ce09c2186/mainraw · history · blame

   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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# pauvre - just a pore plotting package
# Copyright (c) 2016-2018 Darrin T. Schultz. All rights reserved.
# twitter @conchoecia
#
# This file is part of pauvre.
#
# pauvre 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.
#
# pauvre 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 pauvre.  If not, see <http://www.gnu.org/licenses/>.

# SAM/BAM todo
# i/ for loop took 269 seconds ~ 4.48 minutes

#things to do

# This doesn't make much sense. it is perfectly possible that it could
#  double and logbe both (in reference to how histograms are plotted

# - make each layer operate independently
#   - for each of these, make the program figure out the total length either from the GFF or from the bam file
# - make the error "Your query was too stringent and no reads resulted..." not give a traceback.
# - raise the proper error if the sam file has no header.
# - figure out how to update rcParams every time we run a program
# - Write a better docstring for how plotArc works.
# - Write a docstring for seqOrder method. I don't remember what it does
# - write a better function to get the alignment length of the sam/bam file
#    right now it opens the file twice and only gets the length the first time
# - drop columns by name, not by column number (samFile.drop...)
#   - Here's another that needs to be fixed: samFile.drop(samFile.columns[3], axis=1, inplace=True)
# - args
#   - get the filename from args
#   - set up a double-mapped mode to wrap reads around the 0th coordinate for
#      circular assemblies
#   - Make the r-dist something that the user can change.
# Getting Everything on the Same Track
#  - Make a list of features to plot `plot_order = []` or something like that
#  - First, go through the GFF features and come up with all of the things that
#     AREN'T tRNAs that overlap. Store each set of overlaps as its own set of
#     features. For things with no overlap, add those to the `plot_order` alone
#  - Iterate through all elements of `plot_order`, if all elements are forward
#     (start < stop), then draw the element at the end first with no modification,
#     then for every subsequent element draw a white border around the arrow.
#     The element same element should have the start of its arrow drawn to 1
#     degree before the start of the next one. This will make a chevron pattern
#     That will show both the start and stop of both reads accurately.
#     - If both elements are reverse, then do the same thing, but in reverse
#     - If one element is in reverse, but another is forward, then make all the
#       elements in the set half-width since there are too many possible
#       combinations to code reliably.

import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import matplotlib.patches as patches
from matplotlib import rcParams
import platform
import itertools
import pandas as pd
import numpy as np
import scipy as sp
import time
import os, sys
import warnings

# import the pauvre rcParams
import pauvre.rcparams as rc
from pauvre.functions import GFFParse, print_images
from pauvre.bamparse import BAMParse

# following this tutorial to install helvetica
# https://github.com/olgabot/sciencemeetproductivity.tumblr.com/blob/master/posts/2012/11/how-to-set-helvetica-as-the-default-sans-serif-font-in.md
global hfont
hfont = {'fontname':'Helvetica'}

def plotArc(start_angle, stop_angle, radius, width, **kwargs):
    """ write a docstring for this function"""
    numsegments = 100
    theta = np.radians(np.linspace(start_angle+90, stop_angle+90, numsegments))
    centerx = 0
    centery = 0
    x1 = -np.cos(theta) * (radius)
    y1 = np.sin(theta) * (radius)
    stack1 = np.column_stack([x1, y1])
    x2 = -np.cos(theta) * (radius + width)
    y2 = np.sin(theta) *  (radius + width)
    stack2 = np.column_stack([np.flip(x2, axis=0), np.flip(y2,axis=0)])
    #add the first values from the first set to close the polygon
    np.append(stack2, [[x1[0],y1[0]]], axis=0)
    arcArray = np.concatenate((stack1,stack2), axis=0)
    return patches.Polygon(arcArray, True, **kwargs), ((x1, y1), (x2, y2))

def fix_query_reflength(sequence_length, queries, doubled):
    """
    arguments:
     <sequence_length> This is the reference fasta length. It should be 2x the actual
               length of the reference since this program takes a sam file from
               a concatenated reference.
     <queries> This is a list of SQL-type query strings. This is generated
                from argparse.

    purpose:
     This function takes in a list of queries to use for read filtering
     for the redwood plot. It is often not advisable to plot all mapped reads
     since many of them are too small relative to the reference length. Also,
     the point of a death star plot is to show continuity of a circular
     reference, so short reads aren't very helpful there either.

     Currently, this function only recognizes the keyword argument 'reflength'.
    """
    if not doubled:
        sequence_length = int(sequence_length * 2)
    for i in range(len(queries)):
        if 'reflength' in queries[i].split():
            queries[i] = queries[i].replace('reflength', str(int(sequence_length/2)))

def cust_log(base, val):
    try:
        #val = np.log(val)/np.log(base)
        with warnings.catch_warnings():
            warnings.simplefilter("ignore")
            val = np.log(val)
    except:
        val = 0
    if np.isinf(val):
        val = 0
    return val

def plot_histo(panel, args, angleMap, width_map, start_radius, track_radius,
               thisLog = False, double = False, ticks = False):
    """Plots a histogram given a width map. Width map must be the true length
    of the circular genome"""
    myPatches = []
    if double:
        #plot a line in the middle if doubled to distinguish the center
        mid_radius = start_radius+((track_radius - (track_radius/100))/2)
        arc, arcArray = plotArc(start_angle=0, stop_angle=360,
                          radius=mid_radius,
                          width=track_radius/100, fc='yellow')
        myPatches.append(arc)
        #this is only 1/100 the width of the band

    for i in range(len(width_map)):
        iStartIndex = i
        iStopIndex = i + 1
        iStartAngle = angleMap[iStartIndex]
        iStopAngle = angleMap[iStopIndex]
        # This doesn't make much sense. it is perfectly possible that it could
        #  double and logbe both
        if double:
            logwidth = -1 * track_radius * (np.log(width_map[i]-9)/np.log(max(width_map))) * 0.495

            log_start_radius = start_radius+((track_radius - (track_radius/100))/2)
            width = track_radius * (width_map[i]/max(width_map)) * 0.495
            normal_start_radius = start_radius+((track_radius - (track_radius/100))/2) + (track_radius/100)
            #first plot the log inside
            arc, arcArray = plotArc(start_angle=iStartAngle, stop_angle=iStopAngle,
                          radius=log_start_radius,
                          width=logwidth, fc='black')
            myPatches.append(arc)
            # now plot the normal outside
            arc, arcArray = plotArc(start_angle=iStartAngle, stop_angle=iStopAngle,
                          radius=normal_start_radius,
                          width=width, fc='black')
        else:
            if thisLog:
                base = 10
                width = track_radius * (cust_log(base, width_map[i])/cust_log(base, max(width_map)))

            else:
                width = track_radius * (width_map[i]/max(width_map))
            arc, arcArray = plotArc(start_angle=iStartAngle, stop_angle=iStopAngle,
                          radius=start_radius,
                          width=width, fc='black')
        myPatches.append(arc)

    maxx = start_radius
    maxy = 0
    kerning = 12
    if ticks != None and len(ticks) > 0:
        # plot the scalebar
        maxval=max(width_map)
        xs = []
        ys = []
        xend = start_radius
        value_list = ticks
        for value in value_list:
            centerAngle = 45
            this_radius = start_radius + \
                          (track_radius * (cust_log(10, value)/cust_log(10, maxval)))
            print("this_radius", this_radius)
            arc, arcArray = plotArc(start_angle=centerAngle-1, stop_angle=centerAngle+1,
                              radius=this_radius,
                              width=track_radius/25, fc='red')
            xs.append(arcArray[0][0][-1])
            ys.append(arcArray[0][1][-1])
            myPatches.append(arc)

        middle = np.mean(ys) - (kerning/2)
        # The tick marks should start slightly below the lowest tick
        #  mark on the track itself and extend upward evenly with text.
        new_ys = [middle-kerning + (kerning * i)
                   for i in range(len(value_list))]
        for i in range(len(value_list)):
            xlist = [xs[i], xend]
            ylist = [ys[i], new_ys[i]]
            # plots the lines between the markers and the labels
            panel.plot(xlist, ylist, ls='--', color='red', lw=0.75)
            # plots the text labels
            panel.text(xend, new_ys[i],
                       value_list[i], fontsize = 12,
                       ha='left', va='center',
                       color = 'black', **hfont)
            #plots the title
            panel.text(start_radius, new_ys[-1]+kerning,
                       "Read Depth ", fontsize = 10,
                       ha='center', va='center',
                       color = 'black', **hfont)


    return myPatches, start_radius + track_radius, panel

def plot_reads(args, angleMap, widthDict, samFiledf, start_radius,
               doubled = False, collapse = False, track_width=False,
               track_depth = False, thisLog = False):
    """this function plots the reads in a sam file.
    Outputs the patches, and the final_radius

    Author:
    Darrin T. Schultz (github@conchoecia)
    """

    # there should be a different width dict with log scale
    #if args.log and thisLog:
    #    widthDict = {'M':0.8, # match
    #                 'I':0.95,  # insertion relative to reference
    #                 'D':0.05, # deletion relative to reference
    #                 'N':0.1,  # skipped region from the reference
    #                 'S':0.1,  # soft clip, not aligned but still in sam file
    #                 'H':0.1,  # hard clip, not aligned and not in sam file
    #                 'P':0.1,  # padding (silent deletion from padded reference)
    #                 '=':0.1,  # sequence match
    #                 'X':0.1}  # sequence mismatch

    # clean up the df to reset the number of rows, otherwise there might be
    #  errors in the while loop below
    samFiledf = samFiledf.reset_index()

    append_radius = 0
    myPatches = []
    depth_map = []
    # if we need to collapse the reads so they aren't 1 read per line, keep track
    #  of plotted depth at a position with depth_map
    if collapse == True:
        if doubled:
            plotted_depth_map = [0] * int((len(angleMap)/2))
        else:
            plotted_depth_map = [0] * len(angleMap)

    # If we define a track width, then use the max read depth
    #  of the track to figure out the read_width
    read_width = 1
    if track_width:
        read_width = track_width/track_depth

    # This while loops cycles through the the list until everything is plotted
    #  We start at the first index of the file and count down. If we plot it, then
    #  we remove that read from the dataframe. Once we get to the last index,
    #  we attempt to plot and afterward reset the index of the dataframe and
    #  start from the beginning again.
    i = 0
    plotted = False
    #this is used to dtermine where we are during collapse
    current_row = 1
    if args.log and thisLog:
        current_row = 10
    skip = False
    # for printing out the progress of plotting,
    # get the original number of rows to make placeholders
    original_rownum_charcount = len(str(len(samFiledf)))
    direction = 'for'
    print(samFiledf)
    while len(samFiledf) > 0:
        stringTuples = samFiledf.loc[i, 'TUPS']
        mapLen = samFiledf.loc[i, 'MAPLEN']
        #print("i: {} and maplen: {}".format(i, mapLen))
        #Subtract one because BAM uses 1-based indexing but plotting uses 0.
        # I think I could avoid this in the future by changing the parse
        start_index = samFiledf.loc[i, 'POS'] - 1
        start_angle= angleMap[start_index]
        stop_index = 0
        stop_angle = angleMap[stop_index]
        if args.log and thisLog:
            log = 100
            read_width = track_width * ((cust_log(log, current_row + 1)/cust_log(log, track_depth + 1))\
                                        - (cust_log(log, current_row)/cust_log(log, track_depth + 1)))
            #print("log track depth: {}".format(np.log10(track_depth + 1)))
            #print("log current row: {}".format(np.log10(current_row + 1)))
        #now look in the plotted_depth_map to see if there is already a read
        # that overlaps with the current read we are considering.
        if collapse:
            for collapse_i in range(start_index, start_index+mapLen):
                #print("looking at {} and found {}".format(collapse_i, plotted_depth_map[collapse_i]))
                if plotted_depth_map[collapse_i] >= current_row:
                    skip = True
                    break
        #if we don't skip it, we're gonna plot it!
        if not skip:
            # Note that we are plotting something here
            if collapse:
                for collapse_i in range(start_index, start_index+mapLen):
                    plotted_depth_map[collapse_i] = plotted_depth_map[collapse_i] + 1
            for tup in stringTuples:
                if tup[1] == 'I':
                    #If there is an insertion, back up halfway and make plot the
                    # insertion to visually show a "bulge" with too much sequence.
                    # do not advance the start index to resume normal plotting
                    # after the insertion.
                    iStartIndex = start_index-int(tup[0]/2)
                    iStopIndex = iStartIndex + tup[0]
                    iStartAngle = angleMap[iStartIndex]
                    iStopAngle = angleMap[iStopIndex]
                    arc, arcArray =  plotArc(start_angle=iStartAngle, stop_angle=iStopAngle,
                                  radius=start_radius + append_radius,
                                  width=widthDict[tup[1]] * read_width, fc='black')
                else:
                    stop_index = start_index + tup[0]
                    stop_angle = angleMap[stop_index]
                    arc, arcArray =  plotArc(start_angle=start_angle, stop_angle=stop_angle,
                                  radius=start_radius + append_radius,
                                  width=widthDict[tup[1]] * read_width, fc='black')
                    start_index = stop_index
                    start_angle = angleMap[start_index]
                myPatches.append(arc)
            # If we're not collapsing the reads, we just advance one every row
            if not collapse:
                append_radius += read_width
            plotted = True
            #if we've ploted something, remove that read and reset the indices
            # since we will stay at the current index
            samFiledf = samFiledf.drop(i)
            samFiledf = samFiledf.reset_index()
            samFiledf = samFiledf.drop('index', 1)
            print("(countdown until done) rows: {0:0>{num}} dir: {1}\r".format(
                len(samFiledf), direction, num= original_rownum_charcount), end="")
        else:
            #if we weren't able to plot the current read, we will advance the
            # index and look for another read to plot
            # I tried to speed up the algorithm here by making the software 'smart'
            #  about looking forward for the next read, but it was ~50% slower
            i += 1
        skip = False
        # we will only reach this condition if we aren't collapsing, since all
        #  the reads will be removed before getting to this point
        if i >= len(samFiledf):
            i = 0
            #Once we've gone around a complete cycle, we can jump up to start
            # plotting the next row
            append_radius += read_width
            current_row += 1
            #every time we reset, reorganize so that we're now going in the
            # opposite direction to avoid skewing all the reads in the forward direction
            if args.interlace:
                if direction == 'for':
                    bav = {"by":['POS','MAPLEN'], "asc": [False, False]}
                    direction= 'rev'
                elif direction == 'rev':
                    bav = {"by":['POS','MAPLEN'], "asc": [True, False]}
                    direction = 'for'
                samFiledf.sort_values(by=bav["by"], ascending=bav['asc'],inplace=True)
                samFiledf.reset_index(inplace=True)
                samFiledf.drop('index', 1, inplace=True)
    print("\nfinal row is {}".format(current_row))
    return myPatches, start_radius + append_radius

def redwood(args):
    """This function controls all the plotting features for the redwood plot.
    1) determine the length of the circular fasta sequence length
    """
    # get the plotting options specific to this program.
    rc.update_rcParams()
    # This stops numpy from printing numbers in scientific notation.
    np.set_printoptions(suppress=True)


    start = time.time()
    print(args)

    #---------------------------------------------------------------
    # 1) determine the length of the circular fasta sequence length
    #_______________________________________________________________
    main_doubled = True if 'main' in args.doubled else False
    # It is fine that we are using a global since this will never be manipulated
    global sequence_length
    if args.main_bam:
        samFile = BAMParse(args.main_bam, doubled = main_doubled)
        sequence_length = samFile.seqlength
        filename = samFile.filename
    else:
        sequence_length = GFFParse(args.gff).seqlen
    if sequence_length == 0:
        raise OSError("""You have used a SAM/BAM file with no header. Please add a header to
                 the file.""")

    # this also needs to be changed depending on if it was a concatenated SAM
    # if doubled = true, then use linspace between 0,720
    # if doubled = false, then use linspace between 0, 360
    # on second thought, it might not be necessary to change this value even
    #  for doubled sequences
    global angleMap
    if 'main' in args.doubled:
        angleMap = np.linspace(0,720,sequence_length)
    else:
        angleMap = np.linspace(0,360,sequence_length)

    #these are the line width for the different cigar string flags.
    # usually, only M, I, D, S, and H appear in bwa mem output
    widthDict = {'M':0.45, # match
                 'I':0.9,  # insertion relative to reference
                 'D':0.05, # deletion relative to reference
                 'N':0.1,  # skipped region from the reference
                 'S':0.1,  # soft clip, not aligned but still in sam file
                 'H':0.1,  # hard clip, not aligned and not in sam file
                 'P':0.1,  # padding (silent deletion from padded reference)
                 '=':0.1,  # sequence match
                 'X':0.1}  # sequence mismatch

    ##################
    # make the redwood plot
    ##################

    figWidth = 5
    figHeight = 5

    # fig1 is an arbitrary name, only one figure currently
    fig_1 = plt.figure(figsize=(figWidth, figHeight))

    # This is the width and height of the plot in absolute
    #  values relative to the figWidth and figHeight.
    circleDiameter = 5.0

    # Center to plot
    leftMargin = (figWidth - circleDiameter)/2
    bottomMargin = leftMargin

    # There is one panel in this figure that contains
    #  the concentric circles that represent reads. In addition,
    #  the latest version of this program adds the annotation to the exterior
    panelCircle =  plt.axes([leftMargin/figWidth, #left
                             bottomMargin/figHeight,  #bottom
                             circleDiameter/figWidth, #width
                             circleDiameter/figHeight     #height
                             ],frameon=False)
    # Some of these are defaults and redundant, but are included
    #  for readability and convenience.
    panelCircle.tick_params(axis='both',which='both',\
                       bottom='off', labelbottom='off',\
                       left='off', labelleft='off', \
                       right='off', labelright='off',\
                       top='off', labeltop='off')

    # Simply the list in which patches will be stored.
    myPatches = []

    # Each read occupies a width of radius = 1. The max width occupied by any
    #  type of match to the read is 0.9 (Insertion). The line width of a match
    #  is 0.45. Look at the `widthDict` dictionary above to see the defined
    #  widths. I chose radius = 15 to start with because it looks decent in most
    #  scenarios, but maybe could use some tweaking in future iterations.
    start_radius_dict = {1: 10,
                         20: 15,
                         30: 20,
                         35: 90}
    if args.main_bam:
        print("The number of rows is: {}".format(len(samFile.features)))
        for key in sorted(start_radius_dict):
            if len(samFile.features) >= key:
                radius = start_radius_dict[key]
                print("Chose radius: {}".format(radius))
    else:
        radius = start_radius_dict[30]

    circle_fontsize = 14
    panelCircle.text(0, 0, "Position\n(bp)", fontsize = circle_fontsize,
                     ha='center', va='center',
                     color = 'black', **hfont)

    # now plot ticks around the interior, as well as the text
    if 'main' in args.doubled:
        real_length = int(sequence_length/2)
    else:
        real_length = sequence_length
    this_len = int(real_length / 1000) * 1000
    for i in range(0, this_len + 1000, 1000):
        startAngle = angleMap[i] - 0.75
        stopAngle = angleMap[i] + 0.75
        this_radius = radius * 0.93
        this_width =  radius * 0.04
        arc, arcArray = plotArc(start_angle=startAngle, stop_angle=stopAngle,
                      radius=this_radius,
                      width=this_width, fc='black')
        myPatches.append(arc)
        # now plot text if (val/1000) % 2 == 0
        if (i/1000) % 2 == 0:
            #the 0.98 gives some float
            x_pos = -np.cos(np.radians(angleMap[i]+90)) * this_radius
            y_pos =  np.sin(np.radians(angleMap[i]+90)) * this_radius
            rotation = 0
            if i == 0:
                y_pos =  np.sin(np.radians(angleMap[i]+90)) * this_radius * 0.98
                rotation = 0
                ha = 'center'
                va = 'top'
            if (angleMap[i] > 0 and angleMap[i] < 45):
                x_pos = -np.cos(np.radians(angleMap[i]+90 + 1.5)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 + 1.5)) * this_radius
                rotation = (90 - angleMap[i]) * 0.95
                ha = 'right'
                va = 'top'
            elif (angleMap[i] >= 45 and angleMap[i] < 67.5):
                rotation = 90 - angleMap[i]
                ha = 'right'
                va = 'top'
            elif (angleMap[i] >= 67.5 and angleMap[i] < 90):
                # subtracted an addtl degree because it looked bad otherwise
                x_pos = -np.cos(np.radians(angleMap[i]+90 - 1.75)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 - 1.75)) * this_radius
                rotation = 90 - angleMap[i]
                ha = 'right'
                va = 'top'
            elif (angleMap[i] >= 90 and angleMap[i] < 112.5):
                # added an addtl degree because it looked bad otherwise
                x_pos = -np.cos(np.radians(angleMap[i]+90 - 1.75)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 - 1.75)) * this_radius
                rotation = 90 - angleMap[i]
                ha = 'right'
                #bottom is not good
                va = 'center'
            elif (angleMap[i] >= 112.5 and angleMap[i] < 135):
                # added an addtl degree because it looked bad otherwise
                x_pos = -np.cos(np.radians(angleMap[i]+90 + 1.25)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 + 1.25)) * this_radius
                rotation = 90 - angleMap[i]
                ha = 'right'
                #bottom not good
                #center really not good
                va = 'bottom'
            elif (angleMap[i] >= 135 and angleMap[i] < 157.5):
                rotation = 90 - angleMap[i]
                ha = 'right'
                va = 'bottom'
            elif (angleMap[i] >= 157.5 and angleMap[i] < 180):
                x_pos = -np.cos(np.radians(angleMap[i]+90 - 1.0)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 - 1.0)) * this_radius
                rotation = 90 - angleMap[i]
                ha = 'right'
                va = 'bottom'
            elif (angleMap[i] >= 180 and angleMap[i] < 202.5):
                # added an addtl degree because it looked bad otherwise
                x_pos = -np.cos(np.radians(angleMap[i]+90 + 2.0)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 + 2.0)) * this_radius
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'bottom'
            elif (angleMap[i] >= 202.5 and angleMap[i] < 225):
                x_pos = -np.cos(np.radians(angleMap[i]+90 + 2.25)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 + 2.25)) * this_radius
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'bottom'
            elif (angleMap[i] >= 225 and angleMap[i] < 247.5):
                x_pos = -np.cos(np.radians(angleMap[i]+90 - 1.0)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 - 1.0)) * this_radius
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'bottom'
            elif (angleMap[i] >= 247.5 and angleMap[i] < 270):
                x_pos = -np.cos(np.radians(angleMap[i]+90 - 3.0)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 - 3.0)) * this_radius
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'bottom'
            elif (angleMap[i] >= 270 and angleMap[i] < 292.5):
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'bottom'
            elif (angleMap[i] >= 292.5 and angleMap[i] < 315):
                x_pos = -np.cos(np.radians(angleMap[i]+90 + 0.25)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 + 0.25)) * this_radius
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'top'
            elif (angleMap[i] >= 315 and angleMap[i] < 337.5):
                x_pos = -np.cos(np.radians(angleMap[i]+90 - 1.6)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 - 1.6)) * this_radius
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'top'
            elif (angleMap[i] >= 337.5 and angleMap[i] < 360):
                x_pos = -np.cos(np.radians(angleMap[i]+90 - 5.0)) * this_radius
                y_pos =  np.sin(np.radians(angleMap[i]+90 - 5.0)) * this_radius
                rotation = 270 - angleMap[i]
                ha = 'left'
                va = 'top'
            print(" angleMap: {} value: {} rotation: {}".format(angleMap[i], i, rotation))
            text = "{}".format(i)
            if i == 0:
                text = "1/\n{}".format(real_length)
            panelCircle.text(x_pos, y_pos, text, fontsize = circle_fontsize,
                     ha=ha, va=va, color = 'black', rotation=rotation, **hfont)
            # Now add a legend

    # If the user wants to plot long reads, plot them
    if args.main_bam:
        #turn the query string into something usable,
        #  get rid of variables from argparse
        # Make sure we haven't told the program to not query
        if 'False' not in args.query:
            doubled = 'main' in args.doubled
            fix_query_reflength(sequence_length, args.query, doubled)
            # string all the queries together
            queryString = " and ".join(args.query)
            print("You are using this query string to filter reads:\n'{}'".format(queryString))
            samFile = samFile.features.query(queryString)
            if len(samFile) == 0:
                raise IOError("""Your query was too stringent and no reads resulted.  Please try
                again with a less stringent test.  Redwood plotter
                exiting""")

            # now determine how to sort the reads in the order they will be plotted
            if args.small_start == 'inside':
                ascend = True
            elif args.small_start == 'outside':
                ascend = False
            samFile = samFile.sort_values(by=args.sort, ascending=ascend)
            samFile = samFile.reset_index()
            # It is necessary to drop the column called index, since reset_index()
            #  adds this.
            samFile = samFile.drop('index', 1)

        #this plots the central rings from the sam file
        read_patches, radius = plot_reads(args, angleMap, widthDict, samFile,
                                          radius, doubled = True, collapse = False)
        myPatches = myPatches + read_patches

    # if the user would like to plot the annotation, plot it now. In the future,
    #  allow the user to select the order in which the individual elements are
    #  plotted. Since the annotation should have a fixed proportional size to
    #  the circle independent of the number of plotted reads, define a new
    #  radius context.
    if args.gff:
        print("the radius at the end of annotation is: {}".format(radius))
        panelCircle, gff_patches, gff_radius = plot_gff(args, panelCircle, args.gff, radius)
        myPatches = myPatches + gff_patches
        radius = gff_radius

    # it is helpful to be able to plot the RNAseq data along with the annotation.
    # plot that directly outside the annotation
    if args.rnaseq_bam:
        print("in RNAseq")
        rna_doubled = True if 'rnaseq' in args.doubled else False
        bamobject = BAMParse(args.rnaseq_bam, doubled = rna_doubled)
        samFile = bamobject.features
        track_width = radius * 0.15
        #read_patches, radius = plot_reads(args, angleMap,
        #                                  widthDict, samFile, radius,
        #                                  doubled = rna_doubled,
        #                                  collapse = True, track_width = track_width,
        #                                  track_depth = max(bamobject.raw_depthmap),
        #                                  thisLog = True)
        radius_orig=radius
        read_patches, radius, panelCircle = plot_histo(panelCircle, args, angleMap,
                                                       bamobject.get_depthmap(), radius,
                                                       track_width,
                                                       thisLog = True,
                                                       ticks = args.ticks)
        myPatches = myPatches + read_patches
        myPatches.append(arc)

    # The numseqs value is used to determine the viewing dimensions
    #  of the circle we will plot. It is scaled with the number of sequences
    #  that will be plotted. This value should probably be set last to
    #  accommodate other tracks, like annotation.
    min_radius = int(-5 - np.ceil(radius))
    max_radius = int(5 + np.ceil(radius))
    panelCircle.set_xlim([min_radius, max_radius])
    panelCircle.set_ylim([min_radius, max_radius])

    for patch in myPatches:
        panelCircle.add_patch(patch)

    end = time.time()
    print(end - start)
    # Print image(s)
    if args.BASENAME is None:
        file_base = "redwood"
    else:
        file_base = args.BASENAME
    print_images(
        base_output_name=file_base,
        image_formats=args.fileform,
        no_timestamp = args.no_timestamp,
        dpi=args.dpi,
        transparent=args.transparent)

def feature_set_direction(feature_set_df):
    """This function determines if the features in the dataframe passed here are
    all forward, all reverse, or mixed"""
    all_pos = all(feature_set_df['strand'] == '+')
    all_neg = all(feature_set_df['strand'] == '-')
    if all_pos:
        return '+'
    elif all_neg:
        return '-'
    else:
        return 'mixed'

def plot_feature(this_feature, colorMap, start_radius,
                 bar_thickness, direction, this_feature_overlaps_feature):
    """This plots the track for a feature, and if there is something for
    'this_feature_overlaps_feature', then there is special processing to
    add the white bar and the extra slope for the chevron
    """
    myPatches = []
    if this_feature_overlaps_feature.empty:
        iStartAngle = angleMap[this_feature['start']]
        iStopAngle = angleMap[this_feature['stop']] - 2
        arc, arcArray = plotArc(start_angle=iStartAngle,
                                  stop_angle=iStopAngle,
                                  radius = start_radius, width=bar_thickness,
                                  fc=colorMap[this_feature['featType']])
        myPatches.append(arc)
        #this bit plots the arrow triangles for the genes.
        #  Right now it makes each arrow only 1 degree in width and uses 100 segments to plot it.
        #  This resolution hasn't given me any artifacts thus far
        tStartAngle = angleMap[this_feature['stop']]-2
        tStopAngle = angleMap[this_feature['stop']]
        angles = np.linspace(tStartAngle,tStopAngle,100)
        widths = np.linspace(bar_thickness,0,100)
        for j in range(len(angles)-1):
            arc, arcArray =  plotArc(start_angle=tStartAngle,
                                      stop_angle=angles[j+1],
                                      radius=start_radius+(bar_thickness-widths[j+1])/2,
                                      width=widths[j+1],
                                      fc=colorMap[this_feature['featType']])
            myPatches.append(arc)
    else:
        # First, make a solid white bar
        iStartAngle = angleMap[this_feature['start']]
        iStopAngle = angleMap[this_feature_overlaps_feature['start']]
        arc, arcArray = plotArc(start_angle=iStartAngle,
                                  stop_angle=iStopAngle,
                                  radius = start_radius, width=bar_thickness,
                                  fc=colorMap['spacebar'])
        myPatches.append(arc)
        # Now, make the actual color bar
        iStartAngle = angleMap[this_feature['start']]
        iStopAngle = angleMap[this_feature_overlaps_feature['start']] - 1
        arc, arcArray =  plotArc(start_angle=iStartAngle,
                                  stop_angle=iStopAngle,
                                  radius = start_radius, width=bar_thickness,
                                  fc=colorMap[this_feature['featType']])
        myPatches.append(arc)
        #first plot a little pink bar for the outline
        tStartAngle = angleMap[this_feature_overlaps_feature['start']]
        tStopAngle = angleMap[this_feature['stop']]+1
        angles = np.linspace(tStartAngle,tStopAngle,100)
        widths = np.linspace(bar_thickness,0,100)
        for j in range(len(angles)-1):
            arc, arcArray = plotArc(start_angle=tStartAngle,
                                      stop_angle=angles[j+1],
                                      radius=start_radius+(bar_thickness-widths[j+1])/2,
                                      width=widths[j+1],
                                      fc=colorMap['spacebar'])
            myPatches.append(arc)
        #this bit plots the arrow triangles for the genes.
        #  Right now it makes each arrow only 1 degree in width and uses 100 segments to plot it.
        #  This resolution hasn't given me any artifacts thus far
        tStartAngle = angleMap[this_feature_overlaps_feature['start']]-1
        tStopAngle = angleMap[this_feature['stop']]
        angles = np.linspace(tStartAngle,tStopAngle,100)
        widths = np.linspace(bar_thickness,0,100)
        for j in range(len(angles)-1):
            arc, arcArray = plotArc(start_angle=tStartAngle,
                                    stop_angle=angles[j+1],
                                    radius=start_radius+(bar_thickness-widths[j+1])/2,
                                    width=widths[j+1],
                                    fc=colorMap[this_feature['featType']])
            myPatches.append(arc)
    return myPatches

def get_angles(name, center_angle, kerning_angle):
    num_chars = len(name.strip())
    if num_chars == 2:
        start_pos = center_angle
        stop_pos  = center_angle + kerning_angle
        return (start_pos, stop_pos)
    if num_chars % 2 == 0:
        start_pos = center_angle - (kerning_angle/2) - ((num_chars - 1)/2)
        stop_pos  = center_angle + (kerning_angle/2) + ((num_chars - 1)/2)
    else:
        start_pos = center_angle - (num_chars/2)
        stop_pos  = center_angle + (num_chars/2)
    angles = np.arange(start_pos, stop_pos + kerning_angle, kerning_angle)
    return angles

def plot_gff(args, panelCircle, gff_path, radius):
    #parse the gff file
    gffParser = GFFParse(gff_path)

    # Because this size should be relative to the circle that it is plotted next
    #  to, define the start_radius as the place to work from, and the width of
    #  each track.
    start_radius = radius
    track_width = radius * 0.15

    colorMap = {'gene': 'green', 'CDS': 'green', 'tRNA':'pink', 'rRNA':'red',
                'misc_feature':'purple', 'rep_origin':'orange', 'spacebar':'white',
                'ORF':'orange'}
    augment = 0
    bar_thickness = 0.9 * track_width
    # return these at the end
    myPatches=[]
    plot_order = []
    # this for loop relies on the gff features to already be sorted
    i = 0
    idone = False
    # we need to filter out the tRNAs since those are plotted last
    plottable_features = gffParser.features.query("featType != 'tRNA' and featType != 'region' and featType != 'source'")
    plottable_features = plottable_features.reset_index(drop=True)
    while idone == False:
        print("im in the overlap-pairing while loop i={}".format(i))
        # look ahead at all of the elements that overlap with the ith element
        jdone = False
        j = 1
        this_set_minimum_index = i
        this_set_maximum_index = i
        while jdone == False:
            print("new i= {} j={} len={}".format(i, j, len(plottable_features)))
            # first make sure that we haven't gone off the end of the dataframe
            if i+j == len(plottable_features):
                if i == len(plottable_features)-1:
                    # this is the last analysis, so set idone to true
                    #  to finish after this
                    idone = True
                    # the last one can't be in its own group, so just add it solo
                    these_features = plottable_features.loc[this_set_minimum_index:this_set_maximum_index,]
                    plot_order.append(these_features.reset_index(drop=True))
                    break
                jdone == True
            else:
                # if the lmost of the next gene overlaps with the rmost of
                #  the current one, it overlaps and couple together
                if plottable_features.loc[i+j, 'lmost'] < plottable_features.loc[i, 'rmost']:
                    # note that this feature overlaps with the current
                    this_set_maximum_index = i+j
                    # ... and we need to look at the next in line
                    j += 1
                else:
                    i += 1 + (this_set_maximum_index - this_set_minimum_index)
                    #add all of the things that grouped together once we don't find any more groups
                    these_features = plottable_features.loc[this_set_minimum_index:this_set_maximum_index,]
                    plot_order.append(these_features.reset_index(drop=True))
                    jdone = True

    for feature_set in plot_order:
        print(feature_set)
        direction = feature_set_direction(feature_set)
        print("direction = {}".format(direction))
        if direction == '+':
            for i in range(len(feature_set)-1, -1,-1):
                print("inside the plot for loop i = {}".format(i))
                this_feature = feature_set.loc[i,]
                print("got this single feature")
                #For the first element, just plot it normally
                if i == len(feature_set) - 1:
                    #plot the annotation
                    print("Im in the first plot thing")
                    patches = plot_feature(this_feature, colorMap, start_radius,
                                           bar_thickness, direction,
                                           pd.Series([]))
                    for each in patches:
                        myPatches.append(each)
                else:
                    print("now I'm plotting the other one")
                    overlapped_feature = feature_set.loc[i+1,]
                    print("this is the overlapped feature")
                    print(overlapped_feature)
                    patches = plot_feature(this_feature, colorMap, start_radius,
                                           bar_thickness, direction,
                                           overlapped_feature)
                    for each in patches:
                        myPatches.append(each)

            final_radius = start_radius + track_width
    # Now we add all of the tRNAs to this to plot, do it last to overlay
    #  everything else
    tRNAs = gffParser.features.query("featType == 'tRNA'")
    tRNAs.reset_index(inplace=True, drop = True)
    print(tRNAs)
    tRNA_bar_thickness = bar_thickness * (0.8)
    tRNA_start_radius  = start_radius + ((tRNA_bar_thickness * (0.2))/2)
    #tRNA_bar_thickness = bar_thickness
    #tRNA_start_radius  = start_radius
    print("sequence_length = {}".format(sequence_length))
    angle_ranges = []
    for i in range(0,len(tRNAs)):
        this_feature = tRNAs.loc[i,]
        min_angle = angleMap[min(this_feature.loc['start'],this_feature.loc['stop'])]
        max_angle = angleMap[max(this_feature.loc['start'],this_feature.loc['stop'])]
        angle_ranges.append((min_angle, max_angle))
        patches = plot_feature(this_feature, colorMap, tRNA_start_radius,
                               tRNA_bar_thickness, direction,
                               pd.Series([]))
        for each in patches:
            myPatches.append(each)
    print("angle ranges of tRNAs")
    print(angle_ranges)

    # now plot the text of the all the things. do this last
    #  to cover the previous things we plotted
    for i in range(len(gffParser.features.index)):
        if gffParser.features.loc[i, 'featType'] not in ['region', 'source', 'tRNA']:
            angles = []
            # to plot the centers, first figure out the center of the annotated
            #  gene by subtracting the end from the beginning
            name = gffParser.features.loc[i,'name']
            middle_position = int(gffParser.features.loc[i,'center'])
            # calculate the radius, because it changes depending on the track.
            #  Remember that the radius is the position at the bottom of the track,
            #  so we must use va=bottom.
            center_radius = radius + (gffParser.features.loc[i,'track'] * track_width) + (bar_thickness/2)
            # then, figure out the center angle of that position.
            #  I subtract one since I want to center this for the non-arrow
            #  part of the bar.
            center_angle = angleMap[middle_position]-2
            count = 0
            while count < 1:
                print()
                print(name)
                #figure out how many characters to plot
                kerning_angle = 2.5
                print("putting in {} into get angles with center angle = {}, kerning_angle = {}".format(name, center_angle, kerning_angle))
                angles = get_angles(name, center_angle, kerning_angle)
                char_min_angle = angles[0]-(kerning_angle / 2)
                char_max_angle = angles[-1] - (kerning_angle / 2)
                overlapping_angles = []
                # for every possible tRNA position, see if the minimum or
                #  max angle lies in the range of the text
                for tRNA_overlap_range in angle_ranges:
                    for tRNA_position in tRNA_overlap_range:
                        if (char_min_angle < tRNA_position and
                            tRNA_position < char_max_angle):
                            #overlapping_angles contains the tRNA overlapping angles now
                            overlapping_angles.append(tRNA_position)
                print("character angles {}".format(angles))
                print("overlapping angles {}".format(overlapping_angles))
                print("in while loop, center = {}".format(center_angle))
                if len(overlapping_angles) == 0:
                    count += 1
                else:
                    min_overlapping_angle = min(overlapping_angles)
                    print("min_overlapping_angle = {}".format(min_overlapping_angle))
                    max_overlapping_angle = max(overlapping_angles)
                    print("max_overlapping_angle = {}".format(max_overlapping_angle))
                    gene_start_angle = angleMap[gffParser.features.loc[i,'start']]
                    gene_stop_angle  = angleMap[gffParser.features.loc[i,'stop']]
                    start_dif = abs(min_overlapping_angle - gene_start_angle)
                    stop_dif =  abs(gene_stop_angle - max_overlapping_angle)
                    print("start_dif = {}, stop_dif = {}".format(start_dif, stop_dif))
                    if start_dif > stop_dif:
                        center_angle = min_overlapping_angle - ((min_overlapping_angle - gene_start_angle)/2)
                    else:
                        # the extra -2 is to compensate for the taper. This only
                        #  applies to the end of a gene stop. This code won't
                        #  work properly for - strand things currently
                        center_angle = gene_stop_angle - 2 - ((gene_stop_angle - max_overlapping_angle)/2)
                    count += 1
                    print("center angle after assignment = {}".format(center_angle))
                    #There is some overlap in the text and we need to
                    # figure out the min overlap and max overlap. Then figure
                    # out if the angle between min and start or max and end is greater
                    # use whichever is greater as the new place to put the text, then calculate the center
            angles = get_angles(name, center_angle, kerning_angle)
            text_angle = angles[-1] - angles[0]
            # this prints all the characters in their positions and rotates
            print_count = 0
            for j in range(len(angles)):
                this_width = gffParser.features.loc[i,'width']
                if not text_angle > (angleMap[this_width] - 1):
                    if center_angle > 95 and center_angle < 265:
                        rotation = (-1 * center_angle) - 180
                        this_char = name[len(angles) - 1 - j]
                    else:
                        rotation = -1 * center_angle
                        print("name: {} j: {}".format(name, j))
                        this_char = name[j]
                    this_angle = angles[j]
                    # now calculate the absolute x position
                    x_pos = -np.cos(np.radians(this_angle+90)) * center_radius
                    # now calculate the absolute y position
                    y_pos = np.sin(np.radians(this_angle+90)) * center_radius
                    #rotate the text if necessary
                    panelCircle.text(x_pos, y_pos, this_char, fontsize=10,
                                     ha='center', va='center',
                                     rotation = rotation,
                                     family = 'monospace',
                                     color = 'white')
                # this block handles the case where the text is too small to put
                #  parallel with the mitochondrial circle, so it is perpindicular
                else:
                    if print_count == 0:
                        if gffParser.features.loc[i,'strand'] == '+':
                            gene_start_angle = angleMap[gffParser.features.loc[i,'start']]
                            gene_stop_angle  = angleMap[gffParser.features.loc[i,'stop']]
                            center_angle = gene_stop_angle - ((gene_stop_angle-gene_start_angle)/2) 
                        # now calculate the absolute x position
                        x_pos = -np.cos(np.radians(center_angle+90)) * center_radius
                        # now calculate the absolute y position
                        y_pos = np.sin(np.radians(center_angle+90)) * center_radius
                        if (center_angle > 0 and center_angle < 180):
                            rotation = -1 * center_angle + 90
                        else:
                            rotation = -1 * center_angle - 90
                        panelCircle.text(x_pos, y_pos, name, fontsize=6,
                                     ha='center', va='center',
                                     rotation = rotation,
                                     family = 'monospace',
                                     color = 'white')

                        print_count += 1

    return panelCircle, myPatches, final_radius

def run(args):
    redwood(args)