bonus tip: for more darkness > https://darkreader.org/
A modified Reingold–Tilford Tree with support for edges (links) across branches. This uses stroke dash interpolation to highlight the non-hierarchical edges when the mouse hovers over a node.
- Zoom
CMD 0100%CMD 1Entire projectCMD 2Zoom to selected object
- Hide/Show Sidebars
CMD ALT 1Hide left sidebarCMD ALT 2Hide right ridebarCMD ALT 3Hide bothCMD .Presentation mode
CTRL RRuler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl | |
| use warnings;use strict; | |
| my ($header,$sequence); | |
| $header = <>; | |
| chomp $header; | |
| while(my $line = <>){ | |
| chomp $line; | |
| if($line =~ /^>/){ |
