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
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
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.
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
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
<p>Release <a href="https://github.com/go-hep/hep/tree/v0.17.1"><code>v0.17.1</code></a> is fresh-ish from the oven.</p>
<p>This new release continues the refactoring and consolidation work of the <a href="https://go-hep.org/x/hep/groot">groot</a> package (meant to replace <code>rootio</code>.)</p>
brio
<ul>
<li><code>brio/cmd/brio-gen</code> gained some documentation</li>
</ul>
groot
<ul>
<li><code>groot/rdict</code> has seen a bunch of work to create user-type <code>StreamerInfo</code>s,</li>
<li><code>groot/cmd/root-gen-streamer</code>: new command to automatically generate a <code>StreamerInfo</code> and its <code>StreamerElement</code>s given a ROOT or user type,</li>
<li><code>groot/rdict</code> now properly handles streamers with arrays of builtins, and properly visits <code>std::vector<T></code> fields (where <code>T</code> is a builtin)</li>
<li><code>groot/cmd/root-dump</code>: now properly handle <code>root.List</code> values</li>
<li><code>groot</code> dropped the use of <code>gofrs/uuid</code> and replaced it with <code>hashicorp/go-uuid</code>. <code>gofrs/uuid</code> dropped support for Go modules and broke the build of Go-HEP.</li>
</ul>
<p>Here is usage example of the new <a href="https://go-hep.org/x/hep/groot/cmd/root-gen-streamer">root-gen-streamer</a> command:</p>
<pre><code class="lang-sh">> root-gen-streamer -help
Usage: root-gen-streamer [options]
ex:
> root-gen-streamer -p image -t Point -o streamers_gen.go
$> 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
</code></pre>
xrootd
<p>The <code>xrootd/client</code> and <code>xrootd/server</code> packages have been merged into a single package, <code>xrootd</code>.
This simplified the import structure as well as reduced the amount of boilerplate code that was duplicated between the two packages.</p>
<p>For users of <code>xrootd/client</code>:</p>
<pre><code class="lang-diff">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 (
"text/tabwriter"
"github.com/pkg/errors"
- xrdclient "go-hep.org/x/hep/xrootd/client"
+ "go-hep.org/x/hep/xrootd"
"go-hep.org/x/hep/xrootd/xrdfs"
"go-hep.org/x/hep/xrootd/xrdio"
)
@@ -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("could not create client: %v", err)
}
</code></pre>
<p>For users of <code>xrootd/server</code>:</p>
<pre><code class="lang-diff">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 (
"os"
"os/signal"
- "go-hep.org/x/hep/xrootd/server"
+ "go-hep.org/x/hep/xrootd"
)
func init() {
@@ -56,7 +56,7 @@ func main() {
log.Fatalf("could not listen on %q: %v", *addr, err)
}
- srv := server.New(server.NewFSHandler(baseDir), func(err error) {
+ srv := xrootd.NewServer(xrootd.NewFSHandler(baseDir), func(err error) {
log.Printf("an error occured: %v", err)
})
</code></pre>
AOB
<p>Support for writing <code>TTree</code>s didn't make it under the X-mas tree.
This has been converted to a NYE resolution, though.</p>
<p>Before tackling this big item, support for reading <code>TClonesArray</code> is on the way (and tracked in the <code>sbinet/hep#issue-419</code> branch.)</p>
<p>A proposal for data frames is in the works in the <a href="https://github.com/gonum/exp">gonum/exp</a> repository.
Feel free to comment on the associated <a href="https://github.com/gonum/exp/pull/19">pull request (#19)</a> or on the <a href="https://groups.google.com/d/msg/gonum-dev/Ktm7SPGN0BY/L2-cIgzvDQAJ">gonum-dev</a> forum.</p>
<p>Finally, this is GSoC proposal season.
I (<code>@sbinet</code>) will probably send a <code>GDML</code> oriented proposal.
Feel free to send or discuss yours on the <code>go-hep</code> mailing list.</p>
<p>Stay tuned! (and, as always, any kind of help (reviews, patches, nice emails, constructive criticism) deeply appreciated.)</p>
GO analysis using DAVID Functional Annotation (Subset: GOTERM_BP_FAT).
<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
Recommended from our members
Go-hyang (Ancestral Home) By David Burge: a Performer’s Guide to Integrating Korean Musical and Cultural Aspects
David Burge (b. 1930) composed the work Go-Hyang (1994) inspired by his impressions of Korea. the purpose of this study is to provide a performance guide particularly for the benefit of non- Korean pianists. Each of the six pieces of Go-Hyang contains Korean musical and/or cultural references. This document details these aspects, obviously stated or implied through the work. Investigation into distinct characteristics and Korean elements of each of the six movements will involve sources from multiple fields. Interviews with both the composer and the pianist Young-Hae Han for whom the work was written answer many questions about performance issues. Once the Korean reference is examined, it will be related to performance consideration of each movement, in order. the result of this examination will provide the performer not only with beneficial information to facilitate the performance but also with some cultural background to enrich the interpretation of the work
David Audretsch: A Source of Inspiration, a Co-author, and a Friend
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
Conserved up- and downregulated GO terms in aging BM HSCs between humans and mice.
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
- …
