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
.tree-selection-brush .extent { | |
fill-opacity: .05; | |
stroke: #fff; | |
shape-rendering: crispEdges; | |
} | |
.tree-scale-bar text { | |
font: sans-serif; | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
>U07611.2 Hawaii calicivirus nonstructural polyprotein and capsid protein genes, complete cds; and unknown gene | |
GTGAATGAAGATGGCGTCTAACGACGCTTCCGCTGCCGCTGCTGCTAACAGCAACAACGACACCGTAAAA | |
TCTTCAAGTGACGGAGTACTCTCTAGTATGGCTGTCACCTTTAAACGGGCCCTCGGGGCGCGGCCTAAGC | |
AGCCGCCCCCGAGGGAAATACCACAAAGACCCCCACGACCACCCACTCCAGAGTTGATCAAAAAGGTCCC | |
CCCTCCCCCGCCCAATGGGGAGGATGAACCAGTGGTCTCCTATAGCGTCAAAGATGGCGTTTCCGGGCTG | |
CCTGACCTCTCCACCGTCAGACAGCCACCTGAGAACAACACGGCGTTTAGCGTTCCTCCACTCAACCAGA | |
GGGAGAACAGGGATGCCAAGGAGCCACTGACTGGAACAATCCTGGAAATGTGGGATGGGGAGATTTACCA | |
TTATGGCTTGTATGTGGAACAAGGCCTGGTGCTTGGCGTGCACAAACCGCCAGCGGCCATCAGCCTCGCT | |
AAAGTTGAATTAACACCACTCTCTTTATACTGGAGACCTGTGTACACCCCCCAGTATCTCATCTCCCCAG | |
ACACTCTTAGGAGGCTCCATGGGGAATCGTTCCCTTACACAGCTTTTGACAACAACTGCTATGCCTTCTG |
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
# Working example for my blog post at: | |
# http://danijar.com/variable-sequence-lengths-in-tensorflow/ | |
import functools | |
import sets | |
import tensorflow as tf | |
from tensorflow.models.rnn import rnn_cell | |
from tensorflow.models.rnn import rnn | |
def lazy_property(function): |
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
""" | |
Vanilla Char-RNN using TensorFlow by Vinh Khuc (@knvinh). | |
Adapted from Karpathy's min-char-rnn.py | |
https://gist.github.com/karpathy/d4dee566867f8291f086 | |
Requires tensorflow>=1.0 | |
BSD License | |
""" | |
import random | |
import numpy as np | |
import tensorflow as tf |
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
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(); | |
else if(typeof define === 'function' && define.amd) | |
define([], factory); | |
else if(typeof exports === 'object') | |
exports["libR"] = factory(); | |
else | |
root["libR"] = factory(); | |
})(this, function() { |
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
#![feature(lang_items)] | |
#![no_std] | |
#[no_mangle] | |
pub fn add_one(x: i32) -> i32 { | |
x + 1 | |
} | |
// needed for no_std |
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
/* BEGIN node2umd PREFIX */ | |
;(function(define) { define(function(require, exports, module) { | |
/* END node2umd PREFIX */ | |
(function(exports){ | |
"use strict"; | |
function score_int(a) { return a; } | |
function score_loc(a) { return a; } | |
function BinaryHeap(scoreFunction, locfunc){ |
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
/* BEGIN node2umd PREFIX */ | |
;(function(define) { define(function(require, exports, module) { | |
/* END node2umd PREFIX */ | |
var Nt = function() { | |
'use strict'; | |
function makeArray(length, val) { | |
if (val === undefined) { val = 0|0; } | |
if (val < 0) { val = 0; } |
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
>MG839376.1 HIV-1 isolate EPHIC2_2017_ETHIOPIA_RTPCR from Ethiopia pol protein (pol) gene, partial cds | |
CCTCAAATCACTCTTTGGCAACGACCCCTTGTCACAATAAAAATAGGGGGACAGCTAAAGGAGGCTCTCT | |
YAGACACAGGAGCAGATGATACMGTATTAGAAGAAATAAATTTGCCAGGAAAATGGAAACCAAAAATGAT | |
AGGAGGAATTGGAGGTTTTATTAAAGTAAGACAGTATGATCAAATAGCTATAGAAATTTGTGGAAAAAAG | |
GCTATAGGTTCAGTATTAGTGGGACCTACACCTGTCAACATAATTGGAAGAAATATGTTGMCTCAGCTTG | |
GATGTACACTAAATTTTCCAATTAGTCCTATTGAAACTGTCCCAGTAAAATTGAAGCCAGGAATGGATGG | |
CCCAAAGGTTAAACAATGGCCATTGACAGAAGAAAAAATAAAAGCATTMACAGAAATTTGTGCAGAAATG | |
GAAAAGGAAGGAAAAATYACAAAAATTGGGCCTGAAAATCCATATAACACTCCAGTATTTGCCATAAAAA | |
AGAAAGACAGTACCAAGTGGAGAAAATTAGTAGATTTCAGGGAACTCAATAAAAGAACTCAAGACTTTTG | |
GGAGGTTCAATTAGGAATACCACATCCAGGAGGGTTAAAAAGGAACAAATCAGTGACAGTACTGGATGTG |