<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>transposition &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/transposition/</link>
	<description>Feed of posts on WordPress.com tagged "transposition"</description>
	<pubDate>Sat, 26 Jul 2008 17:35:30 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Faire pivoter un data set (un 1er exemple de tranposition)]]></title>
<link>http://thesasreference.wordpress.com/?p=201</link>
<pubDate>Thu, 10 Jul 2008 06:00:16 +0000</pubDate>
<dc:creator>The SAS Reference</dc:creator>
<guid>http://thesasreference.wordpress.com/?p=201</guid>
<description><![CDATA[
La transposition de jeux de données sous SAS est une étape fréquente dans le processus de progra]]></description>
<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-226" src="http://thesasreference.wordpress.com/files/2008/07/phone_fr.jpg" alt="" width="448" height="224" /></p>
<p>La transposition de jeux de données sous SAS est une étape fréquente dans le processus de programmation. Voici pour débuter un premier exemple pour se familiariser avec la syntaxe de base.</p>
<p><strong><span style="color:#ff6600;">1. Les données d'origine</span></strong></p>
<p>Le data set illustrant le sujet est composé de trois variables :</p>
<ul>
<li>le numéro du patient (PAT_ID)</li>
<li>le numéro de la visite (VISIT) prenant les valeurs 18 pour début de visite, 50 pour fin de visite et 70 pour suivi</li>
<li>la date de cette visite (VISIT_DT).</li>
</ul>
<p>En fin d'article, vous trouverez le code pour créer ce data set.</p>
<p><span style="font-family:Courier New;">pat_id visit visit_dt</span></p>
<p><span style="font-family:Courier New;">   1     18  25MAR2007<br />
   1     70  15OCT2007<br />
   1     50  01JUL2007<br />
   2     18  14APR2007<br />
   2     50  08AUG2007<br />
   3     50  16OCT2007</span></p>
<p><strong><span style="color:#ff6600;">2. Le minimum</span></strong></p>
<p>Pour afficher une ligne par patient, il faut faire appel à la procédure PROC TRANSPOSE.</p>
<p>Dans le cas présent, on a choisi d'afficher la date de la visite (VAR VISIT_DT) pour chaque patient (BY PAT_ID). Le numéro de la visite est perdu dans cette transposition.</p>
<p>Le minimum de la syntaxe requiert la création d'un nouveau data set introduit par le mot-clé OUT=. Ce data set peut avoir le même nom que le data set d'origine. Il faut au moins lister une variable.</p>
<p><span style="font-family:Courier New;"><span style="color:#000080;"><strong>proc transpose</strong></span> <span style="color:#0000ff;">data</span>=one <span style="color:#0000ff;">out</span>=two;<br />
   <span style="color:#0000ff;">by </span>pat_id;<br />
   <span style="color:#0000ff;">var</span> visit_dt;<br />
<strong><span style="color:#000080;">run</span></strong>;</span></p>
<p><span style="font-family:Courier New;">pat_id  _NAME_    COL1      COL2      COL3</span></p>
<p><span style="font-family:Courier New;">   1   visit_dt 25MAR2007 15OCT2007 01JUL2007<br />
   2   visit_dt 14APR2007 08AUG2007         .<br />
   3   visit_dt 16OCT2007         .         .</span></p>
<p><span style="color:#ff6600;"><strong>3. Les options et instructions supplémentaires</strong> </span></p>
<p><strong>3.1 Des variables automatiques supprimées avec l'option DROP= :</strong> Le nom de la variable utilisée pour créer les colonnes COL1-COL3 est donné de manière automatique par SAS. Cette information est sauvegardée dans la variable _NAME_. Elle peut dont être supprimée avec l'option DROP attachée au data set de sortie nommé TWO.</p>
<p><span style="font-family:Courier New;"><strong><span style="color:#000080;">proc transpose</span></strong> <span style="color:#0000ff;">data</span>=one <span style="color:#0000ff;">out</span>=two (drop=_name_);<br />
   <span style="color:#0000ff;">by</span> pat_id;<br />
   <span style="color:#0000ff;">var</span> visit_dt;<br />
<strong><span style="color:#000080;">run</span></strong>;</span></p>
<p><span style="font-family:Courier New;">pat_id         COL1         COL2         COL3</span></p>
<p><span style="font-family:Courier New;">   1      25MAR2007    15OCT2007    01JUL2007<br />
   2      14APR2007    08AUG2007            .<br />
   3      16OCT2007            .            .</span></p>
<p><strong>3.2 Une colonne propre à une visite donnée grâce à l'instruction ID :</strong> On remarque que pour le premier patient, la visite du 15 octobre est citée avant celle du 1er juillet. En d'autres termes, une colonne donnée ne correspond pas à une visite donnée mais à l'ordre des données dans le fichier source. De la même manière, la deuxième visite du troisième patient apparaît dans la première colonne.</p>
<p>Pour que chaque colonne corresponde à un numéro de visite donné, on fait appel à l'instruction ID suivie du nom de la variable définissant la colonne. Dans notre cas, il s'agit de la variable VISIT.</p>
<p><span style="font-family:Courier New;"><strong><span style="color:#000080;">proc transpose</span></strong> data=one <span style="color:#0000ff;">out</span>=two (drop=_name_);<br />
   <span style="color:#0000ff;">by </span>pat_id;<br />
   <span style="color:#0000ff;">var</span> visit_dt;<br />
   <span style="color:#0000ff;">id </span>visit;<br />
<strong><span style="color:#000080;">run</span></strong>;</span></p>
<p><span style="font-family:Courier New;">pat_id          _18          _70          _50</span></p>
<p><span style="font-family:Courier New;">   1      25MAR2007    15OCT2007    01JUL2007<br />
   2      14APR2007            .    08AUG2007<br />
   3              .            .    16OCT2007</span></p>
<p><strong>3.3 Des noms de colonnes personnalisés grâce à PREFIX =</strong> : Maintenant chaque colonne correspond à une visite en particulier. Comme les numéros de visites sont des nombres et que les variables de SAS ne peuvent commencer par un chiffre, SAS ajoute automatiquement un tiret bas devant. Pour donner un nom un peu plus parlant, on peut ajouter un préfixe à ces noms de colonne.</p>
<p><span style="font-family:Courier New;"><strong><span style="color:#000080;">proc transpose</span></strong> <span style="color:#0000ff;">data</span>=one <span style="color:#0000ff;">out</span>=two (drop=_name_) <span style="color:#0000ff;">prefix</span>=VISIT;<br />
   <span style="color:#0000ff;">by</span> pat_id;<br />
   <span style="color:#0000ff;">var</span> visit_dt;<br />
   <span style="color:#0000ff;">id</span> visit;<br />
<strong><span style="color:#000080;">run</span></strong>;</span></p>
<p><span style="font-family:Courier New;">pat_id      VISIT18      VISIT70      VISIT50</span></p>
<p><span style="font-family:Courier New;">   1      25MAR2007    15OCT2007    01JUL2007<br />
   2      14APR2007            .    08AUG2007<br />
   3              .            .    16OCT2007 </span></p>
<p><strong>3.4 Lister toutes les variables commençant par un nom donné</strong></p>
<p>Avoir une série de variables commençant par le même préfixe présente des avantages car SAS permet d'y référer très simplement.</p>
<p><strong>La syntaxe SAS</strong> : Pour lister toutes ces variables, il suffit de faire suivre le préfixe de deux points. Dans notre exemple, toutes les variables commençant par le mot VISIT sont listées avec VISIT:.</p>
<p>Voici quelques exemples d'applications de cette syntaxe :</p>
<ul>
<li>un PROC TRANSPOSE : lister les variables à transposer</li>
<li>une option KEEP/DROP : lister les variables à garder ou à supprimer</li>
<li>un ARRAY : lister les variables définissant l'array</li>
</ul>
<p><strong><span style="color:#ff6600;">Annexe </span></strong>:</p>
<p><span style="font-family:Courier New;"><strong><span style="color:#000080;">data</span></strong> one;<br />
   <span style="color:#0000ff;">input</span> pat_id visit visit_dt <span style="color:#008080;"><strong>date9.</strong></span>;<br />
   <span style="color:#0000ff;">format</span> visit_dt <span style="color:#008080;"><strong>date9.</strong></span>;<br />
   <span style="color:#0000ff;">datalines</span>;<br />
1 18 25MAR2007<br />
1 70 15OCT2007<br />
1 50 01JUL2007<br />
2 18 14APR2007<br />
2 50 08AUG2007<br />
3 18 16OCT2007<br />
;<br />
<strong><span style="color:#000080;">run</span></strong>;</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Killer Blog: This is how you do it, Damn]]></title>
<link>http://likeiknowit.wordpress.com/?p=7</link>
<pubDate>Tue, 15 Apr 2008 12:22:27 +0000</pubDate>
<dc:creator>Anubhav</dc:creator>
<guid>http://likeiknowit.wordpress.com/?p=7</guid>
<description><![CDATA[Now that I have created an account with top ranking blogging site I quickly realized the next step i]]></description>
<content:encoded><![CDATA[<p>Now that I have created an account with top ranking blogging site I quickly realized the next step is to write a post and have people comment on it, thats what this is about.</p>
<p>But that apparently means that you have to first have people coming on to your blog, which sounded really tough till all sincere thanks to GOOGLE gave me an answer and it suddenly sounded so simple:</p>
<p><strong>Step 1: </strong>Choose an interesting name. Damn I missed this one because I started it before reading this article.</p>
<p><strong>Step 2:</strong> Write about something that interests others. Do you mean PORN? Karma vs. Kama</p>
<p><strong>Step 3: </strong>Comment on other posts and they will return the favor. Now thats not cool, is it?</p>
<p>and thats not all. There are so many other complicated ones like choosing tags, incorporating scripts, link exchange, directory submissions, comments with signature lines having URLs to your blog, ezine submissions and others.</p>
<p>So here I am <strong>Wanna be a celebrity blogger </strong>and its only getting tougher.</p>
<p style="text-align:center;"><a href="http://likeiknowit.files.wordpress.com/2008/04/famous.gif"><img class="aligncenter size-medium wp-image-22" src="http://likeiknowit.wordpress.com/files/2008/04/famous.gif" alt="" width="252" height="300" /></a></p>
<p>But then I am a well read man and I have read something called as <strong>CYBERNETIC TRANSPOSITION </strong>technique, which says <strong>that if you want something then picture yourself as if you have it </strong>(like I KNOW IT), see I told ya' that I will do it. So now its more of behavioral science. I will behave like a celebrity blogger:</p>
<p><strong>I shalt not write anything which is not well researched and show as if its my 5 minute quick work which I did amongst hundred other things more pressing and important. </strong></p>
<p><em>That makes you expert and your mistakes are overlooked.</em></p>
<p><strong>I shalt not write about my life, routines, my dog thats not what they want. I shalt cover movie reviews, make money online, blogging tips </strong>(I already am), <strong>Gay-ism or global warming and likewise. </strong></p>
<p><em>And I know nothing about all this the I will copy and paste it for you to read. Smartly. I shalt cruise.</em></p>
<p><strong>I shalt promote my good side</strong> <strong>and the favor shalt be returned</strong>. <strong>Trick is to promote some other blogger. "Hey! I like his style" should be good enough. I must remain subtle.</strong></p>
<p><em><span style="font-size:10pt;font-family:Verdana;">Now you have established yourself as an angel of a blogger. Your readers will love you even more.</span></em></p>
<p><strong>I shalt not log into your account 20 times to check for new comments. Thats really uncool and low life.</strong></p>
<p><em><span style="font-size:10pt;font-family:Verdana;">Make yourself believe that all this is a fickle worldly pleasure which only lets you down.</span></em></p>
<p><strong>You must not answer every freaking comment on you post. <span style="font-size:10pt;font-family:Verdana;">Fight that carnal urge to type <em>similes</em> and <em>lolzz</em> and <em>thankyous</em> in your own comment section.</span></strong></p>
<p><em><span style="font-size:10pt;font-family:Verdana;">It might sound rude and cheeky to lesser mortals like you and me, but its time we stopped being just a human and move towards being a blogger.</span></em></p>
<p><strong>I shalt must attract "</strong><strong><span style="font-size:10pt;font-family:Verdana;"><em>I-so-f@$king-hate-what-you-write</em></span>" comment. Bribe your friend to do so or have a fake ID ready for this. I must and so shalt you get this one.</strong></p>
<p><em>It works. I have no reasons here but Yes it works.<br />
</em></p>
<p>Here I am feeling like a celebrity blogger already. And because I am I must say I really don't give a damn.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Say what you will about Kenny G. but]]></title>
<link>http://rawmuse.wordpress.com/?p=20</link>
<pubDate>Fri, 07 Mar 2008 05:31:01 +0000</pubDate>
<dc:creator>rawmuse</dc:creator>
<guid>http://rawmuse.wordpress.com/?p=20</guid>
<description><![CDATA[when was the last time we had an instrumental Top 10 or Top 40 hit?  Why does everything have to ha]]></description>
<content:encoded><![CDATA[<p>when was the last time we had an instrumental Top 10 or Top 40 hit?  Why does everything have to have a singer or singer(s) on it now? I like singers, yes, but I can recall when we had Instrumental hits.  Some of my favorites were by Booker T. and the M.G.s, the Ventures, Herbie Hancock, John Handy (OK "Hard Work" had lyrics, 2 of them...), and Ramsey Lewis.  Now, you must have a vocalist.  I blame "American Idol".</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA["Your music sounds too...perfect"]]></title>
<link>http://rawmuse.wordpress.com/?p=19</link>
<pubDate>Fri, 07 Mar 2008 05:26:10 +0000</pubDate>
<dc:creator>rawmuse</dc:creator>
<guid>http://rawmuse.wordpress.com/?p=19</guid>
<description><![CDATA[You ever get that one? You have a very polished performance, inspired solos. Everything is crystal c]]></description>
<content:encoded><![CDATA[<p>You ever get that one? You have a very polished performance, inspired solos. Everything is crystal clear on your sound system, and yet... the excitement meter is not reading. I have some old recordings of Duke's band that were made with wire recorders, and the music thrills to the max.  So, it isn't the polish or the technology.  </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Music, generally]]></title>
<link>http://jptros.wordpress.com/?p=26</link>
<pubDate>Thu, 06 Mar 2008 18:00:24 +0000</pubDate>
<dc:creator>jptros</dc:creator>
<guid>http://jptros.wordpress.com/?p=26</guid>
<description><![CDATA[Creativity has to be the easiest job in the world right? Guitar plus strings equals chords. Chords p]]></description>
<content:encoded><![CDATA[<p>Creativity has to be the easiest job in the world right? Guitar plus strings equals chords. Chords plus words equals song.  In poetry, every single word chosen has a meaning, there is nothing there that isn't meant to be there by author's decree. You don't want to go through the motions, so you've got to care about everything I do.  It's so interesting how certain concepts can be transposed onto different subjects of your life.</p>
<p>Practice does not make perfect. Perfect practice makes perfect. Practicing is never enough - it's applied practice which launches one's skill set onto another plateau.</p>
<p> The way I see it, there are five basic steps to improvement in anything you do:</p>
<ol>
<li>
<div>Intent - What is the point? What are you trying to accomplish? What is your goal?  Mine is to incorporate Victor Wootenesque riffs and licks into the music I play - also, I want to try and use a thump and pluck technique without forcing a "funk" feel into the music.</div>
</li>
<li>
<div>Proper Preperation - What are you going to need to accomplish your goal - mentally, physically, internally, externally?  For example, if you want to become a bass player - what do you need to get - what type of bass will you play, what kind of setting will you be in?</div>
</li>
<li>
<div>Implementation - Get to it! Start practicing - give yourself a good, reasonable goal here - 5 minutes of musical technique - 10 minutes of scale work - play along with some songs - work on improving any licks/riffs - whatever will meet your needs and the aforementioned goals.</div>
</li>
<li>
<div>Pause, analyze, and evaluate - What worked during your practice/gig? What didn't? What felt right? Where did the compliments come from?</div>
</li>
<li>
<div>Integrate - take everything you've done as of yet, discard what was not pertinent and keep on work hard to develop habits.</div>
</li>
</ol>
<p>Transpose some of these aspects into anything you'd like and I think you'll be on your way to improving yourself ten-fold.</p>
<p><img width="310" src="http://jptros.wordpress.com/files/2008/03/38.jpg" alt="38.jpg" height="530" style="width:196px;height:300px;" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Proofread, it's important to find the misteaks]]></title>
<link>http://rawmuse.wordpress.com/?p=17</link>
<pubDate>Fri, 29 Feb 2008 19:38:43 +0000</pubDate>
<dc:creator>rawmuse</dc:creator>
<guid>http://rawmuse.wordpress.com/?p=17</guid>
<description><![CDATA[With the advent of midi playback, we often let proofreading slide. My advice,  don&#8217;t. Midi pl]]></description>
<content:encoded><![CDATA[<p>With the advent of midi playback, we often let proofreading slide. My advice,  don't. Midi playback will only draw attention to those mistakes that cause dissonance.  It is possible to have mistakes in your music that are consonant sounding, yet are mistakes nonetheless. Also proofread for missing text items, dynamics, instructions like "Play 2nd time only" and so forth. In addition, notes may be spelled enharmonically which should not (example, the leading tone to G is F sharp, not G flat). </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Transposition]]></title>
<link>http://rawmuse.wordpress.com/?p=14</link>
<pubDate>Fri, 29 Feb 2008 14:59:31 +0000</pubDate>
<dc:creator>rawmuse</dc:creator>
<guid>http://rawmuse.wordpress.com/?p=14</guid>
<description><![CDATA[Possibly the biggest untruth in the world of music is that All Keys are Created Equal. This could no]]></description>
<content:encoded><![CDATA[<p>Possibly the biggest untruth in the world of music is that All Keys are Created Equal. This could not be a larger fiction. With the advent of music notation software, the notion that once you have an arrangement in software form, that you can change the key at will without consequence, is a naive one, at best. For starters, good arrangers will often arrange for the entire range of most instruments, or at the very least use a great deal of the range of each instrument. So, the act of changing the key will almost certainly result in going outside the comfortable or even the extreme ranges of the instruments for all but the most elementary charts. Going a step or two in either direction may work, but just consider this, a chart that lays great on all the instruments in the key of D flat, when lowered to B, all of sudden the chart becomes listless, the robust voicings for the tenor instruments now become murky and plodding, and your bari sax needs a lower note than the low A. So, problems result, which the slovenly can shrug off, but the caring arranger will want to rearrange accordingly when writing in a new key. In the aforementioned example, the transposition is across the break (changing from flats to sharps or vice versa) so the spellings of your accidentals may need to be flipped. </p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[animation to genetic (2)]]></title>
<link>http://pharma2010.wordpress.com/?p=15</link>
<pubDate>Mon, 28 Jan 2008 05:16:15 +0000</pubDate>
<dc:creator>pharma2010</dc:creator>
<guid>http://pharma2010.wordpress.com/?p=15</guid>
<description><![CDATA[ The consequence of inversion

http://www.esnips.com/doc/35de6b90-ea11-4ff6-862b-316ae07039be/Chapt]]></description>
<content:encoded><![CDATA[<p align="center"> The consequence of inversion</p>
<p align="center"><img border="0" align="middle" width="300" src="http://www.upload.eg123.com/uploads/dd95fa8eb0.jpg" alt="THE CONSEQUENCE OF INVERSION" height="300" /></p>
<p align="center"><a href="http://www.esnips.com/doc/35de6b90-ea11-4ff6-862b-316ae07039be/Chapter-20---The-Consequence-of-Inversion">http://www.esnips.com/doc/35de6b90-ea11-4ff6-862b-316ae07039be/Chapter-20---The-Consequence-of-Inversion</a></p>
<p align="center">mechanism of transposition</p>
<p align="center"><img border="0" align="middle" width="300" src="http://www.upload.eg123.com/uploads/40fb23cfc8.jpg" alt="mechanism of transposition." height="300" /></p>
<p align="center"><a href="http://www.esnips.com/doc/6f398e5b-e5c2-4444-8d8a-eb0a6c8acac1/Chapter-20---Mechanism-of-Transposition">http://www.esnips.com/doc/6f398e5b-e5c2-4444-8d8a-eb0a6c8acac1/Chapter-20---Mechanism-of-Transposition</a></p>
<p align="center">thymine dimers</p>
<p align="center"><img border="0" align="middle" width="300" src="http://www.upload.eg123.com/uploads/725c9362ad.jpg" alt="thymine dimers" height="300" /> </p>
<p align="center"><a href="http://www.esnips.com/doc/b66b4659-e6eb-41a9-971d-907e593d3cfd/Chapter-20---Thymine-Dimers">http://www.esnips.com/doc/b66b4659-e6eb-41a9-971d-907e593d3cfd/Chapter-20---Thymine-Dimers</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Le droit de la publicité change !]]></title>
<link>http://decryptages.wordpress.com/2008/01/17/le-droit-de-la-publicite-change/</link>
<pubDate>Thu, 17 Jan 2008 09:39:33 +0000</pubDate>
<dc:creator>Jérôme</dc:creator>
<guid>http://decryptages.wordpress.com/2008/01/17/le-droit-de-la-publicite-change/</guid>
<description><![CDATA[La France vient de transposer la directive 2005/29/CE [pdf] du 11 mai 2005 dans la loi n°2008-3 du ]]></description>
<content:encoded><![CDATA[<p>La France vient de transposer la <a href="http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=OJ:L:2005:149:0022:0039:FR:PDF" title="lien vers le site de l'Union européenne">directive 2005/29/CE</a> [pdf] du 11 mai 2005 dans la loi n°2008-3 du 3 janvier 2008. Cette transposition conduit à une évolution assez importante de la réglementation de la publicité.</p>
<p>Je vais préparer un billet sur les changements intervenus en la matière.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Transposing Melodies by String or Finger]]></title>
<link>http://pvamusic.wordpress.com/2008/01/15/transposing-melodies-by-string-or-finger/</link>
<pubDate>Tue, 15 Jan 2008 21:14:54 +0000</pubDate>
<dc:creator>pvamusic</dc:creator>
<guid>http://pvamusic.wordpress.com/2008/01/15/transposing-melodies-by-string-or-finger/</guid>
<description><![CDATA[The start to playing in all keys is simply to play in a few keys! Take a simple melody that you know]]></description>
<content:encoded><![CDATA[<p>The start to playing in all keys is simply to play in a few keys! Take a simple melody that you know very well...Mary Had a Little Lamb, or Twinkle Twinkle.</p>
<p>How do you transpose it to other keys?</p>
<p>The easiest way is by finger (rote). It requires very little adjustment on your part. Just start on a different string, but use the same fingering. As you get better at it, start identifying the key signature and the interval of the starting note.</p>
<p>For example, Twinkle starting on the A string starts on DO, which is the note "A,", and is in the key of A, which has three sharps, F#, C#, and G#.</p>
<p>Twinkle starting on the D string starts on DO, which is the note "D," and is in the key of D, which has two sharps, F# and C#.</p>
<p>Twinkle starting on the G string starts on DO, which is the note "G," and is in the key of G, which has one sharps, F#.</p>
<p>Twinkle starting on the C string starts on DO, which is the note "C," and is in the key of C, which has no sharps or flats.</p>
<p>Once you can do this with Little Lamb and Twinkle, Try "Bingo," "Amazing Grace," "Star Spangled Banner" and Brahms "Lullaby. In our next article, we'll discuss transposing by playing on a different starting finger... :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[THE TRANSPOSITION KARIKA ]]></title>
<link>http://ccwe.wordpress.com/2007/10/25/the-transposition-karika/</link>
<pubDate>Thu, 25 Oct 2007 20:44:06 +0000</pubDate>
<dc:creator>ccwe</dc:creator>
<guid>http://ccwe.wordpress.com/2007/10/25/the-transposition-karika/</guid>
<description><![CDATA[
(This diagram should be at the top of p.33)
These ideas came to me over a relatively short period i]]></description>
<content:encoded><![CDATA[<p><a href='http://ccwe.wordpress.com/files/2007/10/plotinus.jpg' title='plotinus.jpg'><img src='http://ccwe.wordpress.com/files/2007/10/plotinus.thumbnail.jpg' alt='plotinus.jpg' /></a></p>
<p>(This diagram should be at the top of p.33)</p>
<p><em>These ideas came to me over a relatively short period in 2007.<br />
I’m not sure of their origin or their value. They’re free.</p>
<p>karika is a Sanskrit term and means a concise presentation of ideas.</em></p>
<p>Nevskyacharya</p>
<p><strong>THE HIT</strong></p>
<p>p.1<br />
<strong>CUSTARD</strong><br />
One evening, I went upstairs to check that the children were OK. I have this image very clearly in my mind: a sleeping baby, that lovely open face utterly untouched by the world and therefore having no place, and at the same time completely itself. Nothing that has been invaded by the world, however finely, can even approach that state. I can't remember now which child it was - and it doesn't matter, of course. It's the hit that counts. And like all hits, it obliterated me. I wasn't there anymore: only that reality was there.</p>
<p>Our dog, Harry, had the same quality. Now you might say, "Look, everybody loves their children and their dog." True. But I'm trying to get at what that love is - the quality that elicits love.</p>
<p>The way I see it is this. There is something warm and liquid - thicker than water because you can almost pick it up and squeeze it - that is everywhere in the universe, just oozing out of the cracks. I call it 'custard'. It's not so different from the Bible's 'flowing with milk and honey' but I prefer 'custard' because it's thicker and just one thing, not two. Its characteristic is that when you meet it, you smile, you feel more solid inside yourself. Why? Because this quality – which certain things and creatures manifest - draws the same quality out of you. That's why I mentioned Harry. Wherever he went, people were attracted to him, felt more real.</p>
<p>What is it to be true to this hit? Answer: to keep yourself ready for everything soft, open, vulnerable, the things that never advertise themselves, that slip round the corner when your attention is elsewhere.</p>
<p>p.2<br />
<strong>NOBILITY</strong><br />
Our horses used to make a right mess of the field in winter. They were heavy creatures and they pulled the grass out by the roots, so pretty soon there wasn’t much left but mud. But the moor was only a few hundred yards away and we staked them out there during the day. One February morning, we took them out of the stable to go down to the moor as usual. Normally, they were raring to go but it was well below zero and they didn't feel like trotting. We didn't have a stick to gee them up so we plodded along in the freezing mist (bare back, rope halter). It was colder than we'd thought and we didn't have warm enough clothes on. Then, when we got there, I had to move the stakes - great iron things that stuck to my hands and made my fingers throb. "Why am I doing this?" I thought. I just wanted to be beside the fire. But as we turned to walk back, the mist thinned out for a second and the rising sun came through. And there it all was: the horses with their heads down, the hedges beaded with frost, the deep red of the sun, the silence. Then I knew why I was doing it.</p>
<p>The way I see it is this. Everything, however 'ordinary', has to be met on its own terms, has to be honoured. 'Honour' is an ethical term and that's why I use 'nobility' for this kind of hit. This isn't nobility in any special sense. If we stay true to any excellence then we also become noble in the proper sense of the term: elevated, fine. And since this is a hit that can come from literally anything, nobility becomes a way of life, a gift even. Just by being alive, you've got it. A consummation devoutly to be wished.</p>
<p>p.3<br />
<strong>DUENDE</strong><br />
I was 18, on the upper slopes of Mt.Olympos with a friend and a Greek soldier. It was mid-summer but we ran into a storm (or it ran into us). Without warning, the lightning and thunder struck, a single explosion with no delay between light and sound. I'd always wondered why Zeus, king of the gods, had nothing more than the thunderbolt as his 'attribute'. At that moment, I knew. All my senses were obliterated: I couldn't see, I couldn't hear, I had no sensation of my body. I hadn't been physically struck by lightning - but I'd definitely been hit. And in that split second, when, fully conscious, all contact with the world was swept away, I realized that I was without limitation. It changed me on the spot.</p>
<p>The way I see it is this. Before any 'thing' exists, including ourselves, there is something else that exists for and by itself - so you can never encounter it in the company of others even when they are right next to you (like my friend and the soldier). You are always on your own. But that's just the point: on your own is the only place to be.</p>
<p>Now this word <em>duende</em> (which, appropriately, rhymes with <em>bend me</em>). I've pinched it from Lorca: "The Duende...will not approach unless he sees the possibility of death." Traditionally, it is a presence, powerful and implacable, that can transform you - and destroy you. How to be true to it? By abandoning yourself. You can never find what is real by protecting yourself, by trying to keep happiness in a box. You have to go on, not knowing where the path will lead. And there, in the midst of the greatest chaos, and against all computable odds, you will find the simultaneous lightning and thunder that obliterates everything.</p>
<p>p.4<br />
The hit precipitates us into the world. (See the three previous pages.) Every world is a gift – but we have to find our way in it. Worlds are dimensional – which means we move on up but we can also get lost. Custard and nobility, colours and sounds, danger, duende: it just gets out of hand.</p>
<p>There are only two responses: ‘That’s it!’ and ‘What is it, really?’ Diving in and pulling away. You can’t have one without the other because that’s what happens when you enter another dimension: you can go in opposite directions.</p>
<p>It’s the imagination which knows that. It’s a glory – and it can be a trial. Why? Because excellence makes demands of us. And that’s the moral realm right there: ‘should’ and ‘ought’ arise when we’ve been touched by excellence and fallen away from it. We can always fall because excellence can only exist in a dimension where descent and ascent are equally possible.</p>
<p>p.5<br />
Everything that has a shape also has a shadow. We do. And worlds do. All worlds contain forms – so they come back at us with the laws and forces that hold forms in place. This is the cut: the restriction which is the shadow side of the hit’s precipitation. We’re thrown out and then pulled back in. Reality spreads itself out and folds back in on itself at the same time. Sure, there are gaps and lapses – but love and transgression can cross anything.</p>
<p>You cannot be in a world without an identity. We all know that. We furnish our world with signposts and maps - and ourselves with a passport. Worlds are colonized by names. As soon as we receive the world/identity hit, we’re capable of creating copies and fakes and secrets. We become spies in our own reality.</p>
<p>This is a disruptive business, caught up in confusion and alarms. How could it be otherwise in the game of power and invention? Ultimately, it’s beyond our grasp - which explains why consciousness and the desire to escape it arise together. Freedom and subversion eternally linked.</p>
<p>And that’s the drama right there: reality making us like itself.</p>
<p>  <em>I melt, I fade, I dissolve…<br />
  Swarming, climbing, groaning, whistling -<br />
  My whole life has been a seizure.</em></p>
<p>p.6<br />
Worlds are ambiguous. When they come upon us – those short, bright visitations, those long, turning circles – then we’re touched by a kind of love, a departure from ourselves. The air is still and we know that created things can be other than they are. This pendant world, in bigness as a star of smallest magnitude, hangs on a golden chain close by the moon.</p>
<p>Of course, we’re stretching things a bit far – but you’ve always got to do that. On one side, the angel of life, whose care is lest we see too much at once; on the other, the Buddha laughing with his whole body. The two nod at each other across the arcs of space. We’re in between. What to do? The moment arises, we see the colours running out, hear the great chasms calling. Then we leap. We’re exalted: grace and derangement both. It’s where the dark angels come from when they come to lead us on.</p>
<p>Imagination isn’t reality, I agree. But it prepares us for it. Without imagination there is no reality at all. Why not? Because it’s imagination that enables us to find our way through worlds. That doesn’t mean we won’t get lost. The world is always caressing and mauling us. Lush and intimate, rough and resistant: a transfer of gifts.</p>
<p>p.7<br />
And we’re back to the drama - the unfolding of a world. That’s all worlds do. You know: initiation, seduction. Worlds come first; experiences, a split second later. When I say ‘come’, I mean it: worlds surge forth. They occupy all dimensions and create new ones. But they never get in each other’s way. Only experiences do that. Why? Because experiences takes up space and time but worlds generate them. When we’re hit, our lives have pulse and cadence: all those feasts and foibles. And there in the distance a storm is stirring. It looks as if it’s coming our way – but we’re inside it. We always were.</p>
<p>Out of this comes our life. Except that life, you can’t get hold of; death, you can’t escape. Between the ungraspable and the inescapable lies the tumbling destiny of all those that are born.</p>
<p>And there we are: unsealed, unframed, blown. This is hazard in the glorious enterprise. It’s what we do every time we open our eyes.</p>
<p>  <em>I saw the opening in the trees<br />
  Dark and hooded.<br />
  When I went in<br />
  Everything was gone<br />
  And everything was waiting.</em></p>
<p>p.8<br />
The beyond is always with us. You can’t be aware of something without knowing that there could be something else: bigger/smaller, faster/slower, better or worse. On and on, on and on. Of course, we can be wrong about this beyond - and it may only exist in our imagination - but that’s OK because we can correct our misapprehensions.</p>
<p>Understanding and misunderstanding are inextricably linked. When we ‘get’ something, it becomes meaningful, ‘full of meaning’. And once you’ve got meaning, you’ve got a world - and we’re part of it.</p>
<p>In order to identify something, we have to be separate from it. There has to be a gap between us and it or else there couldn’t be misunderstanding – and there always can be. It’s in that gap that the drama begins.</p>
<p>How to bring a world to life? By metaphor, which carries us beyond ourselves. We have to do that in order to ‘get’ the world. When you have found the kingdom you will likewise find your place in it. Of course, there’s a price to pay: ask any saint or sinner. But it’s the only place to be - even if it isn’t what we thought it was.</p>
<p>p.9<br />
‘Getting’ something changes us, obviously: we’ve shifted up a level. We’ve all been through bliss and pain. But we can’t really remember them, only relive them. This embodiment requires imagination: an unruly creature, we know. It gives to forms and images a breath and everlasting motion – which is to say that it fills everything in, given half a chance. But it does ‘get’ things. It knows, for example, that pleasure and pain are close but divergent – like male and female, good and bad.</p>
<p>What is the hallmark of this knowledge? Embodiment: staying in the gaps, filling them in. It’s metaphor with its head up, running. Somebody mimics someone we all know and everybody gets it. It doesn’t matter that the mimic doesn’t look like the person who’s brought to life. We can even embody a quality – impatience or simperingness – that is not linked to any particular person. Just a look, a tone of voice can do it.</p>
<p>But embodiment isn’t just a release: it puts us on the spot. Once we’re in a world we have to live up to it: the invitation, the possibility, is always there. Of course, we may refuse or fail – but these are responses that only pertain to worlds, not to the objects in them (which can be rearranged, even wrapped up and put in our pocket. So convenient – and so easy to lose).</p>
<p>p.10<br />
In short, embodiment is a form of transmission. About ten years ago, I went to a party given by a friend who’s a musician and singer. There were about ten people there who sang or played over a couple of hours. It wasn’t a concert – they just got up and did their turn. I was talking to a man who’d already played some pretty nifty jazz piano when a woman of fifty or so was persuaded to sing. She made a small but noticeable fuss. “Oh, I couldn’t possibly…” Quite a lot of that. The pianist and I carried on talking. Suddenly, she started – and the pianist stopped in mid-sentence and looked over at her. She was shaky and slightly off-key – but she’d got us all. She wasn’t saying ‘This is what I can do’ but something completely different: ‘Here I am.’</p>
<p>The only way of getting this transmission – and it’s the same for performer and audience – is to put ourselves in the way of the hit. Which isn’t easy because it displaces us: we find ourselves somewhere else, and we become someone else. And it’s difficult to handle, too. It comes from nothing - both innocent and pure as well as monstrous, alien.</p>
<p><em>Therefore we will not fear, though the earth be removed.<br />
After the earthquake, a fire; and after the fire, a still small voice.</em></p>
<p>p.11<br />
Anything entered is a mystery. Quite recently, my four-year-old granddaughter leant forward without any preamble and said, ‘Grandad, when you’re dreaming, you’re <em>in</em> your dream! You’re <em>in</em> it!’ And she hunched her shoulders and stretched her fingers wide to reinforce what she was saying. And what was that? That things are not as they seem – they’re both more and less. And we’re lost and found in every moment. That’s why the hit is beyond technique, why it’s a matter of identity, not persuasion or belief. This is a game you play with yourself as a piece.</p>
<p>So we have to stay true. That’s why embodiment is intimately bound up with virtue in the original sense of that term: a power inherent in a supernatural being or god. A lot of people get upset when the terms supernatural or god are used but there’s no need. All they ‘mean’ is that something undeniable is visited upon us. In the Santeria religion, the santeri who are possessed are said to be mounted. And some gods will mount any horse.</p>
<p>This is magic and conspiracy, both – a gift and a steal.</p>
<p>p.12<br />
<strong>TRANSPOSITION</strong><br />
There’s another way of talking about all this: by taking what’s in the middle rather than where we start – the hit – and where we end up – the world. (These two can be reversed, of course.) What’s in the middle is transposition: (re)creating something in another form. It’s the essential principle of human consciousness.</p>
<p>Examples:<br />
  <em>‘Gong’ is a woody word not a tinny one (even though gongs can be made of tin);<br />
  Evelyn Ashford, the great American sprinter, running like a mountain stream and molten lava (at the same time);<br />
  Loneliness in a song not by an ache in the voice (which would be emotional acting) but in the spaces between the notes (Ella Fitzgerald’s ‘One For My Baby’).</em></p>
<p> When we transpose in this way, we are aware of simultaneous realities: that ‘this’ is also ‘that’, that ‘here’ is also ‘there’. And it’s  this realization that is the origin of the notion of level because the connection between these ‘forms’ is not causal like a seed and a plant (and they’re pretty damn different, after all). It’s an awareness that what we’re ‘seeing’ is not confined to its form – it has other forms. And moving from one form to another is what we do: we jump levels. And in that very act, we are ourselves transposed. It’s the fundamental human experience.</p>
<p>p.13<br />
Transposition is thus a kind of metaphor – and that’s where meaning comes from. Something is meaningful when we realize that it goes beyond its ‘form’ – that it is, in a sense, already in other forms. Babies can laugh before they can talk – and that’s because they ‘get’ the movement from one level to another (which is the basis of all meaning, linguistic or not). To transpose in this way is to be human.</p>
<p>There are ‘modes’ of transposition. Yin and yang, the three gunas, the four elements, the five tattvas, are one set, as it were.</p>
<p>Others:<br />
  <em>Jung’s four types: intuition, thinking, feeling, sensation. (That’s why I put ‘seeing’ in scare quotes on the opposite page. All four<br />
  types are modes of being aware. ‘Seeing’ is the sensation mode of transposition but it’s not the only one – or perhaps it would<br />
  be better to say that ‘seeing’ has a different sense for each of the four types);<br />
  The five virtues and their equivalent vices; Buddhism’s three defilements (kleshas).</em></p>
<p>All of these modes are also ways of being: how we engage with reality, and embody it and transmit it. (All transposition is a form of transmission.) They are the laws – the means of expression – that govern the active/creative imagination. (And we’ve all got it. It’s not a special gift. It’s what allows us to be stupid and mean, for example.)</p>
<p>Reality is itself transpositional and approximates us to itself.</p>
<p>p.14<br />
<strong>WORLDS</strong><br />
Transposition is world-making: not just the forms but the relationships between them, and between them and us. It gives immersion and distance at the same time. It also leaves gaps – and we’re in them.</p>
<p>Every world is generated by a mode of transposition.</p>
<p>  <em>We can make a grid or mesh that we put over the world, which allows the world through.<br />
  We can send a pulse out into the world, which touches it and transmits back to us.<br />
  We can advance into the world like a raider and then come back again.<br />
  We can advance and then bring the world up to us like a matador.</em></p>
<p>  All of these are incomplete, of course, because something of the world will always elude us whatever mode we use.</p>
<p>  <em>We can enter the world like a straight line or arrow, which is direct but narrow and sharp so that things are missed or fall off.<br />
  We can swirl out like a ripple, which catches more but is easily absorbed.<br />
  We can flash on and off like a cloud of fireflies – easy to start but given to disparateness, unconnectedness.<br />
  We can roll forth like a sphere, which gives an even spread but tends to flatten everything.</em></p>
<p>Transposition reveals and conceals, is given and discovered. It is meta-physical – action at a distance. Transposition always goes beyond. And it’s in the beyond that reality resides.</p>
<p>p.15<br />
<strong>METAPHOR</strong><br />
This is what Alfie (aged 5) said one evening when he was watching the bath water go down the plug: “That water’s like a fairy. She’s wearing a short dress and she’s going ‘Uh-uh’.” (Wiggling his hips.)</p>
<p>  <em>The other evening I was looking at Venus all alone in a dark blue sky – the blue that comes up after the sun has set. It<br />
  was completely silent apart from the occasional croak of a frog (which made the silence deeper). This transposes into all notions<br />
  of an original perfection that is made better by that which is added to it even if that addition is imperfect: an original unity that<br />
  manifests an extra dimension while remaining itself (buildings hewn from rock, for instance – Ellora, Petra).</em></p>
<p>Venus and silence linking with Petra: this is the adult version of Alfie’s wiggling fairy.</p>
<p>Transposition, metaphor, going beyond (and finding ourselves there): all sensations, all feelings, all ‘ideas’ – and all combinations of them – are at our service here. Height and depth, clarity and opacity, weight and lightness, volatility and stability... This is how we make worlds, by going beyond. Jubilation and subversion at every step. Reality is under construction.</p>
<p>p.16<br />
Just a little aside. Humboldt made a connection between sounds and ‘feeling values’:</p>
<p>  <em>st = enduring, stable<br />
  v = uneven or vacillating motion<br />
  l = melting, fluid</p>
<p>  This is experience as the continual entering of worlds, an initiation.</em></p>
<p>Inner/outer, substance/qualities: these are not separate entities that have to be joined but interacting worlds created by transposition. When music is transposed into nature - “It’s like snowflakes falling,” “It surges”, and the like - nature is itself transposed. We don’t start with snowflakes and surging, such that, knowing them, we ‘know’ the music. Both snowflakes and music are known through transposition – which is to say, through our entering them (and embodying and transmitting them). Inner and outer are obvious examples and we all go through them. It’s just that we get lost in them as we do so.</p>
<p>p.17<br />
<strong>DIMENSIONS, LEVELS</strong><br />
When a new dimension is brought into existence, it defines a new set of ‘forms’. At the same time, it changes how all the other dimensions are ‘seen’ or entered; and what the differences between dimensions consists in. Dimensions are immune to causality so one dimension coming into existence ‘after’ others does not imply secondariness. Any dimension can relate all others to itself. They are all equal in this regard.</p>
<p>Since transposition is always a jump between levels, this explains the particular ‘affect’ that goes with it: entering a world in which we find ourselves – and in which we can get lost. There is no finding and no losing like it.</p>
<p>Jumping levels wakes us up.</p>
<p>  <em>The difference between virtuosity and musicality: the first is technique, which stays at the same level, however brilliant; the<br />
  second is embodiment, which is discovery and failure. The first requires skill; the second, courage.</p>
<p>  I remember seeing a man on TV, having lost someone he loved, being asked how he felt. He tried to say – but he couldn’t. And<br />
  in that failure was everything – himself above all.</em></p>
<p>p.18<br />
There’s another level of transposition: when we’re aware of the difference between dimensions of the world -</p>
<p>  yin and yang, for example,<br />
  or sensation and feeling<br />
  or grid and pulse</p>
<p>- which are themselves different modes of transposition. This is higher-order transposition. Not that it’s better – just more inclusive. And we all do it, whether we are aware of it or not. When we are aware of it (which is a gift not a skill), the world gets bigger – instantly and wonderfully. That’s what truth does: it makes space and time.</p>
<p>Transposition is self-inclusive, of course – so it has to be transposed itself. This can never be linear or singular. It has to be level-jumping and dimension-entering.</p>
<p>p.19<br />
<strong>FORMS, SPACE, SHADOW</strong><br />
Because transposition is engagement with reality in different forms, it is both given and part of us, something we do. This is the origin of the object/subject distinction – and therefore of identity, who we are.</p>
<p>When Alfie says that the water going down the plughole is like a fairy wiggling her hips, this says something about him (as well as water, smoothness, rippling, wiggling and fairies). Transposition is the ascription of meaning – which is why it’s world-making. Meaning can always be different – and so can we (and the world).</p>
<p>We can always fall into the shadow - because truth and shadow are equal transpositions. Whatever casts the same shadow is the same truth regardless of its forms. Illusion is the shadow of perfection.</p>
<p>Every transposition, whatever its origin, implies all other forms at the same level:</p>
<p>thus <em>surrounded by </em>implies <em>is the centre of</em>;<br />
<em>alongside</em> implies <em>before </em>and <em>after </em>(as well as <em>above</em> and <em>below</em>);<br />
<em>fleshes out</em> implies <em>gives birth to </em>(and hence <em>consumes</em>).</p>
<p>Transposed forms have meaning – because they’re part of a world. ‘Straight’ above and below, which change where things are but not what they are, is simply rearrangement; transposition gives forms new life. And death is life in disguise.</p>
<p>p.20<br />
<em>Death is life in disguise</em> is something we can know just by being alive. No special conditions are necessary. By contrast, a great insight like <em>the true successors of Kant are Gauss and Lobachevsky </em>is meaningless without some prior knowledge. The Kant/Gauss/Lobachevsky connection prepares a place for us (which we may or may not occupy depending on our knowledge). Death is life in disguise releases us from place. All truth does – and it’s transposition that reveals it.</p>
<p>Space is constantly trying to fill itself up. How? By the creation of worlds. And what do worlds do? They extend themselves in all directions, ceaselessly, mercilessly; and they fall back in on themselves (to give themselves extra density). We do the same. As above, so below. But we (below) are not straight copies of the cosmos (above). We’re transposed forms of it: recreations in another ‘place’ (and therefore our own worlds).</p>
<p>So there are gaps – and our life, our drama, is us trying to fill them up. All sins are attempts to fill voids. But so are all pleasures. That’s why they are transpositions of each other.</p>
<p>p.21<br />
<strong>SENSES, PERCEPTION, IDEAS</strong><br />
All ‘ideas’ (mental forms) are transpositions – from Locke’s sense of the term to mean ‘that which is picked up by the senses’ to every philosophy and theology ever devised.</p>
<p><em> NB. that both </em>mental and <em>form</em> are transpositional terms.</p>
<p>What we see when we look aren’t just things but the relationships that exist between things, and between things and ourselves. Every look establishes a relationship with the world. (John Berger)</p>
<p>  <em>And here’s an instance of it. A couple of days ago, I went to a concert of three women singing (a capella). One of them<br />
  had a voice with a particular quality: it made you aware of the space around the sound she was creating. Another had the<br />
  inverse quality: her voice pulled everything into it.</p>
<p>  Both of these qualities – the first is liberation; the second, seduction – are transpositional. They are not just alongside<br />
  other ‘forms’ but ‘within’ them. They are dimensional. Put the two together and you have something truly magical: both<br />
  extending the world and deepening it. (Aretha Franklin can do both at the same time – the real reason (not her power and<br />
  timing, which are themselves exceptional) she’s a great singer.)</em></p>
<p>p.22<br />
<em>There are people who can do the same thing with their bodies. The graceful ones make us aware of what’s around them; the potent ones pull us into them. Both of these – grace and potency – are transpositions. (Lauren Bacall and Marlon Brando are examples of those who have embodied the two qualities at the same time. They are the equivalents – the transpositional equivalents – of Aretha Franklin.)</p>
<p>And we can go further. Tragedy pulls in all our losses; comedy allows us to escape. So comedy can be put in the same world as grace and the space around the notes – just as tragedy goes with the deepening of the world and with potency. This is not to say that grace is comic – of course not. Rather, they are both dimensions of release. It is the mark of transposition to reveal such correspondences.</p>
<p>And how about this. “He possessed gifts which were at any moment likely to be visited by plenary inspiration and accomplish things not only unexpected but wondrous.” This could easily be an instance of angelology – itself a transpositional cosmology. The fact that it’s a description of Jim Laker, a great spin bowler, whom you may never have heard of, does not weaken this truth. The world – in the transpositional sense – has more instances of this sort than there are atoms. That’s why it’s irresistible.</em></p>
<p>One way of putting all this is in the words of Robert Fripp. “Knowing is the ordering of our experience on the outside of our perceptions; understanding is the ordering of our experience on the inside of our perceptions.”</p>
<p><em>Inside</em> and <em>outside </em>are transpositional terms, of course.</p>
<p>p.23<br />
<strong>MODES OF TRANSPOSITION</strong><br />
Modes of transposition – the tattvas, the four elements, Jung’s four functions, and the like – are ways of being, ways of engaging with reality. All of them are manifestations of the active imagination.</p>
<p>Their distribution in the world – or rather, their expression - is what give the world meaning: taste, colour, shape, line, depth, harmony, rhythm, body, weight, movement, balance; plus launching forth and holding back, pulling in and putting out. It’s transposition that knows this (although <em>nobody knows where you are – how near or how far</em>.)</p>
<p><em>When you’re depressed, life loses its colour and taste. When you’re ‘normal’, colour and taste seem secondary qualities, added to the substantial world. But when you lose them, you realize they’re everything – life itself. (Stephen Fry)</em></p>
<p>There is a special case of transposition when transposition hides itself. So we get the ‘idea’ of something which is non-transposed (= neutral/pure/undistorted) from which the transposed (= biased/impure/distorted) stems. But this ‘idea’ is the very epitome of transposition, not its absence. The greatest act of the imagination is to forget itself.</p>
<p>This ‘idea’ permits certain moves: rearrangement without really changing anything, for instance (which is labelling, itself a sort of binding). It allows us to represent forms while keeping the forms as they are (we think). Then we can carry the world around with us instead of being in it.</p>
<p>p.24<br />
<strong>ART, CREATIVITY</strong><br />
<em>Art does not reproduce the visible; rather, it makes v</em>isible (Paul Klee). That is, it transposes.</p>
<p>Of course, transposition across the arts is easy. Lamonte Young cites Webern, Rothko and haiku as embodiments of minimalism. It’s when the heart is receptive to all forms that it gets interesting.</p>
<p><em>When I was 16, I went to Paris and did all the things you’re supposed to do at that age – including visiting the Musée d’Orsay to see the Impressionists. One Cézanne painting – actually, one tiny bit of a Cézanne painting – got me. It was a flower in a still life – and it was a single dab of paint. I remember the sensation to this day: the rush that comes from moving from one level to another. And in that jump were all the other jumps I’d made in my life, and I knew that the world contained an unlimited number of them. I didn’t need anyone to tell me that – the world had been telling me since the day I was born.</p>
<p>Another example. I was watching the rehearsal of an opera with dancers transposing the music into movement. And something happened. A quality of the music – its spread-outness – crossed over to the dancers, and a quality of the dancers – their palpability – leaked into the music. So the dancers acquired an intricacy and the music took on a solidity beyond that which each could have evoked on its own. The transposition of the senses is an essential element in all art. (And it’s the only thing that distinguishes art from earnest striving.) That’s why art enhances life and why life copies it.</em></p>
<p>p.25<br />
<strong>EMBODIMENT, TRANSMISSION</strong><br />
Transposition uses the reality it embodies – that’s why it’s true.</p>
<p>Truth, however tiny (a dewdrop), cannot be contained. Uncontainability is ungraspability. Whatever we pour truth into, some of it spills out. So truth is a form of escape. This principle isn’t restricted to ‘big’ or ‘deep’ truths – all truth is like that. Truth and liberation and love are the same – and it’s transposition that reveals it. Everything is transposed; everything escapes. Everything is a gift; everything is ours. This is embodiment, the creation of worlds. A dewdrop is quite enough.</p>
<p>p.26<br />
Now try this for size. There is a true, free ‘place’ (though it’s actually space itself) which is the same for everyone: musician, lover, thinker, yogi, acupuncturist, mountaineer, gardener. But this space becomes a ‘place’ when we embody and transmit it as a form. This is transposition into forms - and it’s what makes gardening different from music and yoga different from mountaineering. That is, the forms that come out of the hit are what make it a hit about some particular thing (even though all transpositions, by connecting between worlds, are equal). Then there’s a further transposition: from the individual embodiment and transmission to the level above, which is tradition: the social body which governs how the transposed forms (individual) are themselves transmitted across time. (This tradition doesn’t have to be a ‘high’ one like Hinduism or Islam; it can be any social form – the local allotment association, for example, or a jazz club.)</p>
<p>All of these three – original ‘place’, transposition into forms, and transposition into tradition – exist simultaneously, each on top of the other, and so compressed that we can hardly peel them apart. And we get stuck in that. But we can get out.</p>
<p><em>The true man or woman yields to the process of experience as to a lover. Such a one does not enter into the realms of experience in a defensive manner – cranky, rigid, full of self and knowledge. Rather, such a one enters into the present moment of experience as an act of love.</em> (Da Free John)</p>
<p>p.27<br />
<strong>IMAGINATION</strong><br />
Transposition is magic in the true sense of the term: intention, which is directed, together with active imagination, which fills things in. What things? The world.</p>
<p>The distinction between reality and imagination is itself transpositional.</p>
<p><strong>MEANING, BOUNDARIES, LANGUAGE</strong><br />
Transposition, by its very nature, allows that things could be different. So meaning is always shared. That’s where the drama comes from.</p>
<p>Transposition is crossing boundaries – ones that require us to give ourselves up. It’s like loving someone. And that means failure. When it’s part of a mode of being, it’s OK, even necessary. It’s only when failure is on the same level as accomplishment that it’s seen as something to be avoided.</p>
<p>It’s the process of transposition that wakes us up. Yet it is always in need of completion. By the very fact that it ‘jumps’ and ascribes reality, it leaves a gap to be filled (and fulfilled). There has to be a gap for there to be meaning, and for us to be aware of that meaning. But then we’re necessarily aware of the gap, too – and us in it.</p>
<p>Language is transpositional, as is all role-playing. Identity and culture are impossible without it. It’s labelling function (‘Mt.Everest’, ‘my pen’) exists within those forms.</p>
<p>p.28<br />
<strong>QUALITY, VIRTUE; MORALITY</strong><br />
Transposition creates the subject/object distinction. (All the terms in this sentence are transpositional, including ‘the’.)</p>
<p>(a) ‘That is there now’/’I am here now’. Inbetween these two is a world.</p>
<p>(b) a ‘take’ on that realization – what it is for that to be there now and me to be here now.</p>
<p>Both are transpositions, which means there’s a jump and a loss. Out of these comes beauty/distortion - in fact, the very ‘idea’ of quality.</p>
<p>That’s why quality isn’t added on to something (which remains the same). Transposition is the perception of quality - picking it up and thus participating in it. This is just another way of saying that transposition ‘makes’ worlds.</p>
<p>Transposition bestows (and perceives) quality; there is no quality without meaning; and no meaning without ‘judgement’. That’s why we’re bound to live up to the truth: ‘That should go there’.</p>
<p>Transposition is inherently evaluative – and because it’s a form of embodiment, it’s also moral (should/ought). That’s one of the reasons that culture/society is transpositional - why it puts people somewhere (and they accept it).</p>
<p>p.29<br />
We can derive experiential esotericism from this. For example, the four elements:</p>
<p>		<strong>light</strong><br />
<em>water	             receiving everything<br />
earth	             sending forth everything<br />
fire	             searching everything out<br />
air	             touching everything</em>		</p>
<p>                   <strong>shadow</strong><br />
<em>water          unable to remain pure<br />
earth                  unable to remain concentrated<br />
fire                     unable to remain quiet<br />
air                      unable to remain concentrated</em></p>
<p>The first set are metaphysical, the second are ‘non-dharmic’. (This is the connection between metaphysics and ‘virtue’ – that old principle, so misunderstood.)</p>
<p>Virtues are independent of conditions; vices are stuck to them, need them, fed by them. The first is love; the second is attachment (which interferes with love).</p>
<p>p.30<br />
<strong>TRUTH, FREEDOM, LOVE</strong><br />
Truth is faster than thought – because of transposition. Thought rearranges things; transposition makes them real.</p>
<p>Transposition captures the whole truth (though it cannot be captured). It doesn’t separate it out or ‘place’ it – except that, having transposed it, we find that it is ‘in place’ (and so are we).</p>
<p><em>I love science and I do not want to give it up. But it is not enough. I am looking for something that is enough.</em></p>
<p>I had a conversation with my brother, who’s an acupuncturist. He talked about the times when he just knows what to do: the needles find their places, he’s not really doing it. He called it “expressing from the heart with intent”. This reminded me of Ella Fitzgerald’s singing: she’s finding her way through a world – of sound and timing - that she has herself created. She doesn’t have to know what she’s going to sing in the next split second – it just comes to her, like a dolphin swimming. “Expressing from the heart with intent” applies very well. This is freedom – which is precisely what we get from listening to her. She’s free, so we are. Transposition as embodiment yet again – the quintessential human experience.</p>
<p>The opposite of love is fear – the attempt to abandon transposition. But transposition can never be entirely lost – because the heart, which is the origin of transposition, can never stop expressing itself (in some ‘form’ or other). So love will always come back.</p>
<p>p.31<br />
<strong>IDENTITY, THE DRAMA</strong><br />
‘Here I am’ precedes ‘This is what I can do’. This is the only reason that the unitary precedes the multiple. It’s a matter of level – and of identity. But to be true to that we have to embody it.</p>
<p>Transposition, by its very nature, loses something at the same time that it reveals. So we lose part of ourselves as well as receiving the gift.</p>
<p>Transposition has two allies: will (which fills things in) and imagination (which spreads them out). All time is part of this process – and all stories: our past, present and future.</p>
<p>We are always looking for ourselves – but transposition changes us. That which is lost in the very act of discovery is the bit we want to recover.</p>
<p>Transposition needs confirmation for the same reason that it needs completion – because it has no resting place. Where does this confirmation come from? From other transpositions – and from others (who are themselves transposed).</p>
<p>Transposition is self-referential. What goes out as being about the ‘world’ comes back as being about ourselves. There is no self-awareness without this move.</p>
<p><em>As above, so below </em>(though that principle is transpositional, of course).</p>
<p>Transposition is entering the drama – the unruly miracle.</p>
<p>p.32<br />
<strong>CULTURE, TRADITION</strong><br />
All transposition is a ‘form’ of revelation - the hit. But it also sets us up - the cut. Culture - what we do with each other - is a repository of such forms. Traditions simply put them into a shape that we can enter, stay in, fall out of - and go back into again. History, from the shortest memory to the great arcs of cosmic time, is one of these shapes. It always has a place for us somewhere.</p>
<p>If the heart is receptive to all forms, we can enter a world in every moment. How to do that? By holding ourselves open, being present. Out of this come the dewdrops of Zen and the unlimited theophanies of Ibn ‘Arabi and the Ramayana.</p>
<p>This is the highway of joy. Brightness comes forth from the heart and the lords that were certainly expected are moving amongst us. We are making something of what we find. We are being true.</p>
<p>This doesn’t mean that we have anything. The mirror is not the substance of the images in it, only the place of their appearance. The same with us. The world is in us - but it isn’t ours.</p>
<p>The bird of the heart flies out and sings. It’s the only freedom - and that <em>is</em> ours.</p>
<p>p. 33<br />
There is a diagram of the worldview of Plotinus [see above under the title].</p>
<p>The outer circle is the cosmic sphere of all ‘forms’ (including ‘ideas’).<br />
The middle sphere is the ‘world soul’, subdivided by the radii into different ‘ideas’ (which I call ‘modes of being’).<br />
The central sphere is the soul’s ‘idea’ of its own inner unity and totality (which includes all the other ‘ideas’).</p>
<p>It doesn’t matter about the arcane or technical nature of this metaphysics. The point is that all levels of it are transpositional - and that we’re going through them in every thought-moment.</p>
<p>Now you might say, “That’s news to me.” But that’s why I’m writing this: to show that entering a world is a ‘form’ of enlightenment.</p>
<p><strong>REFERENCES</strong></p>
<p><em>These references - quite a few of which are very vague or even non-existent - are simply acknowledgements of those who have put things so well that I couldn’t resist them.</em></p>
<p>p.5	consciousness and the desire to escape it...: John Gray<br />
	<em>I melt</em>...: John Robinson<br />
	<em>Swarming</em>...: Goethe<br />
	<em>My whole life has been a seizure</em>: can’t remember<br />
p.6	This pendant world...by the moon: <em>Paradise Lost</em>, ii.1052<br />
	lush and intimate...a transfer of gifts: David Toop, <em>Ocean of Sound</em><br />
p.7	tumbling destiny of all those who are born: can’t remember<br />
	hazard in the glorious enterprise: <em>Paradise Lost </em>i.89<br />
p.8	When you have found the kingdom...: can’t remember<br />
p.9	gives to forms and images...: Wordsworth, <em>The Prelude</em><br />
p.10	<em>Therefore we will not fear...: </em><em>Psalms xlvi.2</em><br />
	<em>After the earthquake...: I Kings xix.12</em><br />
p.15             reality is under construction: the underlying tenet of Charles Fort in the phrase of Colin Bennett<br />
p.16	Humboldt taken from Ernst Cassirer, <em>The Philosophy of Symbolic Forms</em><br />
p.22       “He possessed gifts...: Neville Cardus, Wisden, 1957<br />
p.23	<em>nobody knows where you are...: </em>Roger Waters/Pink Floyd, ‘Shine On You Crazy Diamond’<br />
p.30	<em>I love science...: </em>a young man to John Pentland, Gurdjieff’s representative in the USA<br />
p.32	heart receptive of all forms: Ibn ‘Arabi<br />
	highway of joy: an acupuncture term<br />
	brightness comes forth from the heart: more acupuncture<br />
	the lords that were certainly expected: Coleridge, <em>Ancient Mariner</em><br />
	The mirror is not...in it: Henri Corbin (drawing on Sufi sources)<br />
p.33	Plotinus diagram: can’t remember</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Table transposition in SQL]]></title>
<link>http://szeryf.wordpress.com/2007/09/09/table-transposition-in-sql/</link>
<pubDate>Sun, 09 Sep 2007 12:05:08 +0000</pubDate>
<dc:creator>szeryf</dc:creator>
<guid>http://szeryf.wordpress.com/2007/09/09/table-transposition-in-sql/</guid>
<description><![CDATA[Here&#8217;s a cool SQL trick for doing a partial transposition of a table:

select id,

  max(case ]]></description>
<content:encoded><![CDATA[<p>Here's a cool SQL trick for doing a partial transposition of a table:</p>
<p>[sourcecode language='sql']select id,</p>
<p>  max(case when language_id = 1 then text else null end) pl_text,</p>
<p>  max(case when language_id = 2 then text else null end) en_text</p>
<p>from translations</p>
<p>group by id;[/sourcecode]<!--more--></p>
<p>This is useful if you have some data of (logically) one entity spread over several physical records in table. In the above example we have <code>translations</code> table that contains data like this:</p>
<table CLASS="">
<tr>
<th CLASS="">id</th>
<th CLASS="">language_id</th>
<th CLASS="">text</th>
</tr>
<tr>
<td CLASS="">1</td>
<td CLASS="">1</td>
<td CLASS="">pies</td>
</tr>
<tr>
<td CLASS="">1</td>
<td CLASS="">2</td>
<td CLASS="">dog</td>
</tr>
<tr>
<td CLASS="">2</td>
<td CLASS="">1</td>
<td CLASS="">kot</td>
</tr>
<tr>
<td CLASS="">2</td>
<td CLASS="">2</td>
<td CLASS="">cat</td>
</tr>
</table>
<p>This is one of two most popular solutions for storing translations (or other similar data) in relational database. The other one is to have separate column for each language, like this:</p>
<table CLASS="">
<tr>
<th CLASS="">id</th>
<th CLASS="">pl_text</th>
<th CLASS="">en_text</th>
</tr>
<tr>
<td CLASS="">1</td>
<td CLASS="">pies</td>
<td CLASS="">dog</td>
</tr>
<tr>
<td CLASS="">2</td>
<td CLASS="">kot</td>
<td CLASS="">cat</td>
</tr>
</table>
<p>In my opinion both solutions have pros and cons and none is much better than the other (comments welcome if your opinion is different). In the first representation you don't have to modify the schema if you want to add a new language, but getting values for all the languages at once is more complicated. In the second version, spotting missing translations is easier, but additional care must be taken to avoid overwriting changes if two translators would be working on the same record.</p>
<p>That's when the above SQL snippet comes in handy. If you decided to stick with the first representation, you can use it to convert it on-the-fly to the other one. You can even define a view with this query, but if you do it so often that you need a view, maybe you should consider converting to the second representation?</p>
<h1>How does it work?</h1>
<p>When I first saw it, my reaction was: it can't work! But then I analyzed it a little bit and the idea dawned on me and it was good. And pleasant. So I won't spoil the pleasure for you -- if you know how grouping in SQL works you should have no problem understanding it. Feel free to explain it in the comments, though.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Music synaesthesia]]></title>
<link>http://pianogeek.wordpress.com/2007/06/29/music-synaesthesia/</link>
<pubDate>Fri, 29 Jun 2007 23:10:56 +0000</pubDate>
<dc:creator>Mat</dc:creator>
<guid>http://pianogeek.wordpress.com/2007/06/29/music-synaesthesia/</guid>
<description><![CDATA[Just been reading this. This is exactly what I&#8217;ve got.
I&#8217;ve had perfect pitch (full-on a]]></description>
<content:encoded><![CDATA[<p>Just been reading <a href="http://colourfulanguage.wordpress.com/2007/05/20/music-colour-synaesthesia/trackback/" title="Music synaesthesia" target="_blank">this</a>. This is exactly what I've got.</p>
<p>I've had <a href="http://en.wikipedia.org/wiki/Perfect_pitch" title="Perfect Pitch" target="_blank">perfect pitch</a> (full-on active two-way perfect pitch) ever since I was a kid; without any reference, I can sing you note, or if you play me a note, I can tell you what it is. Makes using the "transpose" button a nightmare; I'm playing C but hearing Db, argh! Now, I've known and understood it for quite some time, without noticing that I would also hear colours. Let me say that again, when I hear a note, it has a particular colour to it:</p>
<ul>
<li>C - red</li>
<li>C#/Db -brown</li>
<li>D - green</li>
<li>D#/Eb - blue</li>
<li>E - custard yellow</li>
<li>F - really light yellow</li>
<li>F#/Gb - a muddy, dirty yellow</li>
<li>G - orange</li>
<li>G#/Ab - dark purply red</li>
<li>A - dark red</li>
<li>A#/Bb -  bluey purple</li>
<li>B - dark blue</li>
</ul>
<p>There doesn't seem to be any real pattern to the colours, and it doesn't matter what octave. Chords are interesting. Generally the bass/root/dominant note of the chord will come through above a mush of other colours; if there's a melody then those are the colours that'll come through.</p>
<p>It's not distracting, it's quite comforting actually. It's more of an imagining in my head, rather than a hallucination in front of me. Anyway, people think I'm nuts when I try to describe it to them. But try describing "blue" to a blind person.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Initial sequencing and comparative analysis of the mouse genome]]></title>
<link>http://biomedinformatics.wordpress.com/2006/02/16/initial-sequencing-and-comparative-analysis-of-the-mouse-genome/</link>
<pubDate>Thu, 16 Feb 2006 20:22:47 +0000</pubDate>
<dc:creator>Samantha Chui</dc:creator>
<guid>http://biomedinformatics.wordpress.com/2006/02/16/initial-sequencing-and-comparative-analysis-of-the-mouse-genome/</guid>
<description><![CDATA[Categories:  Genomics, Mouse genome, Sequencing, Synteny, Transposition
This is a very long, very de]]></description>
<content:encoded><![CDATA[<p>Categories: <a href="http://biomedinformatics.wordpress.com/tag/genomics/"> Genomics</a>, <a href="http://biomedinformatics.wordpress.com/tag/mouse-genome/">Mouse genome</a>, <a href="http://biomedinformatics.wordpress.com/tag/sequencing/">Sequencing</a>, <a href="http://biomedinformatics.wordpress.com/tag/synteny/">Synteny</a>, <a href="http://biomedinformatics.wordpress.com/tag/transposition/">Transposition</a></p>
<p>This is a very long, very dense article and I will attempt to summarize some of the concepts which they discuss. I definitely suggest reading the whole article yourself:<br />
<a target="_blank" href="http://www.nature.com/nature/journal/v420/n6915/abs/nature01262.html">Initial sequencing and comparative analysis of the mouse genome<br />
</a> published by the Mouse Genome Sequencing Consortium in <strong><em>Nature</em></strong> (2002)<br />
but here is a quick and dirty explanation of what I got out of it:</p>
<p><strong>Introduction </strong></p>
<p>At the time this paper was published, the initial sequence of the <a target="_blank" href="http://www.ensembl.org/Homo_sapiens/index.html">human genome</a> had just been released by <a target="_blank" href="http://www.celera.com/">Celera</a> and the public consortium. The mouse (<a target="_blank" href="http://www.ensembl.org/Mus_musculus/index.html">Mus musculus</a>) was the obvious choice for sequencing after humans because of the ability to do comparative analysis between the two species. Humans and mice are similar enough for us to find conserved sequences which may point to important regulatory elements, but different enough that not everything appears to be conserved. Basically the mouse hits the sweet spot. You don't want the two genomes to be completely identical and you don't want them to be completely different either. Also, the mouse is a good organism to sequence because it is easy to do experiments with mice in the lab. So if you want to study a particular gene in humans, you can actually do experiments with the equivalent gene in mice!</p>
<p><strong>Assembly</strong></p>
<p>To sequence an entire genome, the organism's DNA is initially chopped up into little bits and each small piece is sequenced independently. Then the data is assembled by using overlapping sequencing reads to generate a longer consensus sequence. There are <a target="_blank" href="http://www.bio.davidson.edu/courses/genomics/method/shotgun.html">two basic approaches</a> to assembly: Hierarchical shotgun sequencing and <a target="_blank" href="http://en.wikipedia.org/wiki/Whole_genome_shotgun">Whole genome shotgun</a>. Hierarchical shotgun sequencing uses clones that are mapped to particular regions of the genome, whereas WGS attempts to sequence the entire genome at once. Advantages of WGS are that it is faster, easier, and cheaper; but on the flipside, it does not produce a finished sequence for large, repetitive genomes. The Mouse Genome Sequencing Consortium decided to use a hybrid strategy in order to take advantage of the speed of assembly provided by WGS and also the precision of using <a target="_blank" href="http://en.wikipedia.org/wiki/Bacterial_artificial_chromosome">BAC clones</a> with hierarchical shotgun sequencing.</p>
<p><strong>Synteny conservation</strong></p>
<p>A syntenic region is a region in which two or more pairs of homologous markers occur on the same chromosome in two or more species. Comparing the human and mouse genomes, we can see that there is a strong conservation of synteny between them. Check this:<br />
<a target="_blank" href="http://www.stanford.edu/~peiting/wordpress/mouse_seq_fig2.JPG"><img width="100%" src="http://www.stanford.edu/~peiting/wordpress/mouse_seq_fig2.JPG" /></a><br />
The above is a mapping between the human chromosome 14 and the mouse chromosome 12. Now let's do a full on comparison of the entire mouse genome:<br />
<a target="_blank" href="http://www.stanford.edu/~peiting/wordpress/mouse_seq_fig3.JPG"><img src="http://www.stanford.edu/~peiting/wordpress/mouse_seq_fig3.JPG" /></a><br />
We can see in the figure above that the X chromosome has not had much reshuffling, which is what we would expect since only one X chromosome is expressed in an organism, so insertions and deletions would likely be deleterious. Note also the high correspondance between human chromosome 20 and mouse chromosome 2, as well as that between human chromosome 17 and mouse chromosome 11. Looking at a map like this of 342 conserved syntenic segments, we can calculate that the minimum number of rearrangements to transform the mouse genome into the human genome (and vice versa) is 295! If we do similar comparisons with other related species, we can reconstruct the precise pathway of rearrangements from some ancestral chromosomal order. Way cool. (By the way, <a target="_blank" href="http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&#38;db=PubMed&#38;list_uids=11934743&#38;dopt=Citation">PatternHunter</a> was the program that was used to identify these syntenic regions.)</p>
<p><strong>Transposons</strong></p>
<p>A large portion of the mouse and human genomes are comprised of repetitive segments of DNA which appear to serve no function for the organism. In fact, in the mouse 38.55% of the entire genome is made up of these repeats. In humans this statistic is even higher: 46.36%! How did this come to be? Essentially there are sections of the genome whose mRNA transcripts are transcribed back into DNA and then incorporated back into the genome, so that there are multiple copies all over the place! These elements are called <a target="_blank" href="http://en.wikipedia.org/wiki/Transposon">transposons</a>. There are two types of transposon repeats: lineage-specific and ancestral. Lineage-specific repeats are those introduced by transposition after the divergence of the mouse and human. Ancestral repeats are those which are in both mouse and human because they arose in some common ancestor. So basically there were a number of ancestral repeats before mice and humans became two separate species and then as they continued to evolve, each species acquired even more repeats. What's interesting to note is that 33.55% of the repeats in mouse are lineage specific (meaning they aren't found in humans) and only 24.05% are in humans. This shows that humans have a lower rate of transposition than mice. Comparing ancestral repeats, we can determine the rate at which mutations occur in humans vs. mice. The data shows that there is an approximately two-fold higher average substitution rate in the mouse lineage than in humans. That means that more of the human ancestral repeats are intact. So not only does transposition occur more frequently in mice, but point substitutions are also more frequent. Calculating the rate at which mutations occur in these ancestral repeats is important because these elements are considered "neutral" DNA (they're basically useless) and therefore can be used to establish a baseline for comparison with mutation rates in functional genes.</p>
<p><strong>References</strong><br />
<a target="_blank" href="http://www.nature.com/nature/journal/v420/n6915/abs/nature01262.html">Initial sequencing and comparative analysis of the mouse genome</a></p>
]]></content:encoded>
</item>

</channel>
</rss>
