16,538 research outputs found

    SHEPHERD SCHOOL SYMPHONY ORCHESTRA A concert of thesis works by recent graduates: Lembit Beecher, Huay-Ming Ng, and David Wightman Thursday, February 23, 2006 8:00 p.m. Stude Concert Hall

    No full text
    Program: Oh No You Didn't / David Wightman (b.1977) -- Don't Go There / Lembit Beecher (b.1980) -- Strike! / Huay-Ming Ng (b. 1970)

    An Interview with Tony David Sampson: Author of Virality: Contagion Theory in the Age of Networks

    No full text
    Tony D. Sampson is Reader in Digital Culture and Communication in the School of Arts and Digital Industries (ADI) at the University of East London, where he directs the EmotionUX lab, supervising research on the cognitive, emotional, and affective aspects of user experience. In 2013, he co-founded Club Critical Theory, an organization dedicated to the application of critical theory in everyday life in Southend-on-Sea, Essex. Tony is the author of Virality: Contagion Theory in the Age of Networks and The Assemblage Brain: Sense Making in Neuroculture, both from the University of Minnesota Press. He blogs at viralcontagion.wordpress.com. The editors of this special NANO issue are delighted to have the opportunity to talk with Tony about how his work touches on issues of imitation and contagion—a loaded term unpacked within his 2012 book

    GO-term analysis of top-1000 downregulated genes in KM-H2.

    No full text
    Expression profiling analysis of HL cell line KM-H2 in comparison to seven control cell lines revealed differentially expressed genes (see S1 Table). The top-1000 downregulated genes in KM-H2 were analyzed using the DAVID online tool generating a list of GO terms. This list indicates deregulated functions in KM-H2, including regulation of growth, regulation of B-cell differentiation, and regulation of apoptotic signaling pathways (arrow heads). (TIF)</p

    David Gregory

    No full text
    Photograph - David Gregory, member of the Book Sub-Committee, part of the Town of Athabasca 75th Anniversary Committee, Athabasca, Alberta. The Book Sub Committee produced the book "Athabasca Landing: An Illustrated History

    go-hep/hep: Release v0.17.1

    No full text
    &lt;p&gt;Release &lt;a href="https://github.com/go-hep/hep/tree/v0.17.1"&gt;&lt;code&gt;v0.17.1&lt;/code&gt;&lt;/a&gt; is fresh-ish from the oven.&lt;/p&gt; &lt;p&gt;This new release continues the refactoring and consolidation work of the &lt;a href="https://go-hep.org/x/hep/groot"&gt;groot&lt;/a&gt; package (meant to replace &lt;code&gt;rootio&lt;/code&gt;.)&lt;/p&gt; brio &lt;ul&gt; &lt;li&gt;&lt;code&gt;brio/cmd/brio-gen&lt;/code&gt; gained some documentation&lt;/li&gt; &lt;/ul&gt; groot &lt;ul&gt; &lt;li&gt;&lt;code&gt;groot/rdict&lt;/code&gt; has seen a bunch of work to create user-type &lt;code&gt;StreamerInfo&lt;/code&gt;s,&lt;/li&gt; &lt;li&gt;&lt;code&gt;groot/cmd/root-gen-streamer&lt;/code&gt;: new command to automatically generate a &lt;code&gt;StreamerInfo&lt;/code&gt; and its &lt;code&gt;StreamerElement&lt;/code&gt;s given a ROOT or user type,&lt;/li&gt; &lt;li&gt;&lt;code&gt;groot/rdict&lt;/code&gt; now properly handles streamers with arrays of builtins, and properly visits &lt;code&gt;std::vector&lt;T&gt;&lt;/code&gt; fields (where &lt;code&gt;T&lt;/code&gt; is a builtin)&lt;/li&gt; &lt;li&gt;&lt;code&gt;groot/cmd/root-dump&lt;/code&gt;: now properly handle &lt;code&gt;root.List&lt;/code&gt; values&lt;/li&gt; &lt;li&gt;&lt;code&gt;groot&lt;/code&gt; dropped the use of &lt;code&gt;gofrs/uuid&lt;/code&gt; and replaced it with &lt;code&gt;hashicorp/go-uuid&lt;/code&gt;. &lt;code&gt;gofrs/uuid&lt;/code&gt; dropped support for Go modules and broke the build of Go-HEP.&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;Here is usage example of the new &lt;a href="https://go-hep.org/x/hep/groot/cmd/root-gen-streamer"&gt;root-gen-streamer&lt;/a&gt; command:&lt;/p&gt; &lt;pre&gt;&lt;code class="lang-sh"&gt;> root-gen-streamer -help Usage: root-gen-streamer [options] ex: &gt; root-gen-streamer -p image -t Point -o streamers_gen.go $&gt; root-gen-streamer -p go-hep.org/x/hep/hbook -t Dist0D,Dist1D,Dist2D -o foo_streamer_gen.go options: -o string output file name -p string package import path -t string comma-separated list of type names -v enable verbose mode &lt;/code&gt;&lt;/pre&gt; xrootd &lt;p&gt;The &lt;code&gt;xrootd/client&lt;/code&gt; and &lt;code&gt;xrootd/server&lt;/code&gt; packages have been merged into a single package, &lt;code&gt;xrootd&lt;/code&gt;. This simplified the import structure as well as reduced the amount of boilerplate code that was duplicated between the two packages.&lt;/p&gt; &lt;p&gt;For users of &lt;code&gt;xrootd/client&lt;/code&gt;:&lt;/p&gt; &lt;pre&gt;&lt;code class="lang-diff"&gt;diff --git a/xrootd/cmd/xrd-ls/main.go b/xrootd/cmd/xrd-ls/main.go index 784a5c7..9961802 100644 --- a/xrootd/cmd/xrd-ls/main.go +++ b/xrootd/cmd/xrd-ls/main.go @@ -31,7 +31,7 @@ import ( &quot;text/tabwriter&quot; &quot;github.com/pkg/errors&quot; - xrdclient &quot;go-hep.org/x/hep/xrootd/client&quot; + &quot;go-hep.org/x/hep/xrootd&quot; &quot;go-hep.org/x/hep/xrootd/xrdfs&quot; &quot;go-hep.org/x/hep/xrootd/xrdio&quot; ) @@ -93,7 +93,7 @@ func xrdls(name string, long, recursive bool) error { ctx := context.Background() - c, err := xrdclient.NewClient(ctx, url.Addr, url.User) + c, err := xrootd.NewClient(ctx, url.Addr, url.User) if err != nil { return errors.Errorf(&quot;could not create client: %v&quot;, err) } &lt;/code&gt;&lt;/pre&gt; &lt;p&gt;For users of &lt;code&gt;xrootd/server&lt;/code&gt;:&lt;/p&gt; &lt;pre&gt;&lt;code class="lang-diff"&gt;diff --git a/xrootd/cmd/xrd-srv/main.go b/xrootd/cmd/xrd-srv/main.go index 2a09dbd..230bf31 100644 --- a/xrootd/cmd/xrd-srv/main.go +++ b/xrootd/cmd/xrd-srv/main.go @@ -14,7 +14,7 @@ import ( &quot;os&quot; &quot;os/signal&quot; - &quot;go-hep.org/x/hep/xrootd/server&quot; + &quot;go-hep.org/x/hep/xrootd&quot; ) func init() { @@ -56,7 +56,7 @@ func main() { log.Fatalf(&quot;could not listen on %q: %v&quot;, *addr, err) } - srv := server.New(server.NewFSHandler(baseDir), func(err error) { + srv := xrootd.NewServer(xrootd.NewFSHandler(baseDir), func(err error) { log.Printf(&quot;an error occured: %v&quot;, err) }) &lt;/code&gt;&lt;/pre&gt; AOB &lt;p&gt;Support for writing &lt;code&gt;TTree&lt;/code&gt;s didn't make it under the X-mas tree. This has been converted to a NYE resolution, though.&lt;/p&gt; &lt;p&gt;Before tackling this big item, support for reading &lt;code&gt;TClonesArray&lt;/code&gt; is on the way (and tracked in the &lt;code&gt;sbinet/hep#issue-419&lt;/code&gt; branch.)&lt;/p&gt; &lt;p&gt;A proposal for data frames is in the works in the &lt;a href="https://github.com/gonum/exp"&gt;gonum/exp&lt;/a&gt; repository. Feel free to comment on the associated &lt;a href="https://github.com/gonum/exp/pull/19"&gt;pull request (#19)&lt;/a&gt; or on the &lt;a href="https://groups.google.com/d/msg/gonum-dev/Ktm7SPGN0BY/L2-cIgzvDQAJ"&gt;gonum-dev&lt;/a&gt; forum.&lt;/p&gt; &lt;p&gt;Finally, this is GSoC proposal season. I (&lt;code&gt;@sbinet&lt;/code&gt;) will probably send a &lt;code&gt;GDML&lt;/code&gt; oriented proposal. Feel free to send or discuss yours on the &lt;code&gt;go-hep&lt;/code&gt; mailing list.&lt;/p&gt; &lt;p&gt;Stay tuned! (and, as always, any kind of help (reviews, patches, nice emails, constructive criticism) deeply appreciated.)&lt;/p&gt

    GO analysis using DAVID Functional Annotation (Subset: GOTERM_BP_FAT).

    No full text
    <p>Top 200 genes with highest RPM value in young CEC-DM was analyzed in DAVID. GO terms that are over represented are ranked in descending order of percentage of genes representing this category. Related GO terms represented by the same set of genes were combined.</p

    David Audretsch: A Source of Inspiration, a Co-author, and a Friend

    No full text
    In this chapter, Enrico Santarelli discusses the profound impact that David had on his career. Beginning with a conference in Budapest, Santarelli and David bocame close friends and colleagues. They went on to collaborate on many papers and projects, several of which Santarelli highlights below

    Appendix B: Author bio-briefs

    No full text

    Conserved up- and downregulated GO terms in aging BM HSCs between humans and mice.

    No full text
    Conserved genes among the the top 500 most significantly up- and downregulated genes, respectively, in human and mice aged HSCs were subjected to analysis of enriched GO terms using DAVID. (A) Top 20 GO terms of conserved upregulated genes in aged HSCs. (B) GO terms of conserved downregulated genes in aged HSCs. X-axis indicates p-values of the depicted GO terms.</p
    corecore