Differences between revisions 2 and 11 (spanning 9 versions)
Revision 2 as of 2008-05-13 05:56:10
Size: 2810
Editor: was
Comment:
Revision 11 as of 2020-02-08 13:26:23
Size: 2898
Editor: chapoton
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
goto [:interact:interact main page] goto [[interact|interact main page]]
Line 4: Line 4:
[[TableOfContents]] <<TableOfContents>>
Line 6: Line 6:
== Web app: protein browser == == Web app: protein browser FIXME ==
Line 8: Line 8:
{{{
import urllib2 as U
[sagecell-issues]
{{{#!sagecell
from six.moves.urllib.request import urlopen
Line 16: Line 17:
    f = U.urlopen(gen_str + GenBank_ID)      g = f.read()
    f.close()
    with urlopen(gen_str + GenBank_ID) as f:
g = f.read()
Line 21: Line 21:
attachment:biobrowse.png {{attachment:biobrowse.png}}
Line 25: Line 25:
{{{ [sagecell-issues]
{{{#!sagecell
Line 57: Line 58:
    print 'Population size: ' + str(pop_size)
    print 'Selection coefficient for first taxon: ' + str(d_field(selection))
    print('Population size: ' + str(pop_size))
    print('Selection coefficient for first taxon: ' + str(d_field(selection)))
Line 68: Line 69:
    print 'Generations until coalescence: ' + str(len(gens))
    show(coal_plot(coal_data1), axes = False, figsize = [8,4.0*len(gens)/pop_size], ymax = len(gens)-1)
    print('Generations until coalescence: ' + str(len(gens)))
    show(coal_plot(coal_data1), axes = False, figsize = [8, 4.0*len(gens)/pop_size], ymax = len(gens)-1)
Line 71: Line 72:
attachment:coalescent.png {{attachment:coalescent.png}}

Sage Interactions - Bioinformatics

goto interact main page

Web app: protein browser FIXME

by Marshall Hampton (tested by William Stein) [sagecell-issues]

biobrowse.png

Coalescent simulator

by Marshall Hampton [sagecell-issues]

coalescent.png

interact/bio (last edited 2020-02-08 13:26:23 by chapoton)