Friday, March 30, 2007

Trying to Gulp Through A Coffee Stirrer

I'm not a big coffee drinker -- indeed I come from a long line of not big coffee drinkers -- but I do often raid various coffee establishments for other goodies, and in the cold weather (perhaps behind us for a while) that includes hot cocoa.

Of course, greedily drinking a hot beverage can be the route to a host of unpleasant effects. Sometimes a straw makes sense, but many such places just have the little hollow plastic coffee stirrers. They might faintly resemble straws, but the exercise of trying to use one in that way is mostly an exercise in frustration, as the throughput just isn't sufficient.

I had a similar feeling today at work. It had occurred to me that the some data I wanted to explore was probably out there on the internet somewhere -- and indeed it is in a dozen or so 'boutique' databases. One I found had a nice prominent download link, and in short order the whole dataset was on my machine & parsed into the form I needed.

However, no such luck with any other database. They all have decent web front ends, but the last thing I want to do is browse the data one record at a time. I'm not even sure the precise data I want is in the database -- how many records should I browse before giving up? And since what I want is an atypical small subset of the data, it isn't surprising the web interface really doesn't support my query.

Anyone who curates data & makes it available deserves applause, and I hate to sound ungrateful. But could you please make a flatfile dump available? Someone might just want to use your data in a way you didn't imagine.

Thursday, March 29, 2007

454? How Roche!

Today's GenomeWeb bears the news that Roche Diagnostics is buying out 454 Life Sciences. Since Roche was previously the sole distributor of 454's sequencers and Curagen had announced their desire to sell the subsidiary, this is hardly a shocking development. But it is the third next generation sequencing company to be bought by an established player -- ABI slurped up Agencourt Personal Genomics and Illumina recently bought Solexa. So far, Affymetrix and Agilent have stayed out -- as has Nimblegen. There are plenty of other startup next generation sequencing shops out there, and certainly other candidates for acquirers. Roche, of course, got the clear current front runner, though it may be that the next wave of sequencer launches will close the gap quickly.

Whether these acquisitions are good for next generation sequencer development is an open question. On the one hand, these larger organizations bring deep pockets and substantial marketing expertise. But, there are plenty of pitfalls. For both ABI and Illumina, the new machines compete with their old machines -- smart companies see this as inevitable, but many companies completely botch the job due to internal conflicts (as amply documented by Clayton Christiansen in his books). It isn't encouraging that the Agencourt Personal Genomics technology is impossible to find on the ABI website.

It will also be interesting to see how long the 454 moniker lasts -- one hates to see pioneers go, but on the other hand I find naming a subsidiary after the accounting code tres gauche.

An interesting note in the GW item is that Roche was previously prohibited from marketing regulated diagnostics built on the 454 platform. Roche has previously tried to launch some molecular diagnostics -- the D word is after all in their name -- so this is a clear fit. On the other hand, a run on the 454 is reputed to be serious money, so they'll need to either find a very high value application (in a field notorious for antiquated, miserly reimbursement rules) or figure out a way to run lots of tests simultaneously. Given the rather long read lengths of the 454, one approach to the latter would be to use sequence tags near the beginning of the read to identify the original samples.

Another GW item describes some roundtable discussion at a recent meeting on next generation sequencing. The price for a genome in 2010 is still a big question, but a lot of bets are apparently in the $10K-$25K range. Some of the leaders in the field are taking a realistic view of the utility of such sequencers at such a price tag -- if you can scan the most informative SNPs for $1K, then why sequence? I'm guessing that other than a few pioneers (J.Craig is apparently resequencing his genome), there won't be a lot at those prices. On the other hand, cancer genomics is a natural fit, as each genome is different (indeed, each sample probably has many distinguishable genomes) and understanding all the fine molecular details will be valuable. SNP chips can estimate copy numbers, but not tell you how those pieces are stitched together nor find all the interesting mutations.

Even with the price at $1K, sequencing will certainly not be 'too cheap to meter'. Notions of sequencing a big chunk of the human population have appeal, but do we really want to blow another few billion dollars on human sequencing? On the other hand, as I've suggested before, other mammalian genomes may provide a lot of interesting biology for the buck (or bark). What are the most interesting unbagged genomes out there -- that sounds like the topic for another day's post...

Wednesday, March 28, 2007

Tiny Tug-of-War

I never got past introductory physics in college, particularly since I put off taking it until my senior year. Many of the basic concepts had shown up every so many years in grade school, but college really tied it together & for a brief time I could run the equations in my sleep. Lots of the problems involve springs and pulleys and other simple mechanical gadgets.

Last week's Nature contains a paper which is in the growing field of doing experiments on springs and other simple machines -- except here the gadgets are biomolecular machines, in this case the E.coli ribosome. The technologies are a bit fancier than what we had in grade school -- optical traps and such -- but in the end the desired measurements are similar -- what force does it take to balance (or overcome) a force within the molecular machine.

A huge book on my father's bookshelf was The Handbook of Chemistry and Physics, which had all sorts of tables of useful measured values and derived constants. I have the 1947 edition on my bookshelf, a present from one of my father's friends -- though I confess I've never done more than flip the pages of either one. There must be an electronic, molecular biological equivalent out there with the sort of data from this paper, but I don't know where it is. I could use it periodically -- I was recently trying to find rate and accuracy figures for RNA polymerase and the ribosome, and it isn't easy to do & I'm not sure I trust what I've found.

Thursday, March 22, 2007

Error Will Robison

After my post on the mental challenge of juggling multiple programming languages, I realized another reason I like to stick to a few: grokking the error messages.

In an ideal world the various messages kicked out from ill-formed or ill-performing code would always precisely and instantly finger the exact problem -- in which case the programming environment would just go fix them. Some programming languages do try to assist you a lot. For example, Perl often guesses that you really didn't mean to have a quoted string run over many lines, and thereby shows you where the long quote starts. Similarly, it will often suggest that a semicolon addition that might cure the problem.

But not always are the error messages on the mark -- sometimes the wrong quote is really a bit before where it points out, or a missing semi-colon is not the problem. Worse, when the Perl interpreter chokes on a program, it generally spits out one of two error messages: Out of Memory or Segmentation Fault. In either case one goes looking for an inadvertant infinite loop or endless recursion (the Perl debugger catches these quite often with a more informative message). One common Perl trap is the one letter deletion which converts nicely behaving code such as:

while (/([A-Z])/g) { push(@array,$1); }

into
while (/([A-Z])/) { push(@array,$1); }


Another gotcha (or should I say, gotme) is the wrong loop end condition
for ($i=10; $i>0; $i++ { print "$i\n"; }
. Again, the symptom tends to be running out of memory on a trivial task.

My problems don't tend to call for much recursion, so when I get 100 levels in it must be a mistake. Most commonly it is due to a botched lazy initiation -- a scheme by which some complex object doesn't set up internal states until they are asked for. I do this a lot right now as I have objects representing complex data collections stored in a relational database, and it doesn't make time sense to slurp every last piece of data from the database when you only want a few. However, one must be careful:


sub getId
{
my ($this)=@_;
unless (defined $this->{'foo'})
{
$this->createFoo();
}
}

sub createFoo
{
my ($this)=@_;
my $id=$this->getId(); # round-and-round we go!
}


My errors with R tend to fall into a small number of categories, and the error messages are generally informative. Out of memory means I really did blow out memory. Trivial syntax errors (changing the assignment <- to <= or =), passing nulls (or no data) to something which doesn't care for it, etc.

On the other hand, I'm glad that I don't do a lot of Oracle (SQL) programming, or at least a wide variety of it, because the error messages there are as clear as mud to me. Luckily, there is a small number of mistakes I make; probably 95% fall into : misspelling a table name or alias, misspelling a column name, letting Perl-isms slip in ($column), missing commas, and extraneous commas. The only that is SQL-specific is botching GROUP BY columns and functions. The only runtime errors I tend to get are either minor hiccups from database inconsistencies or queries that never seem to return because of a botched join.

It looks like I might have a real need to learn C#, which means reverting a bit of a decade (when I used C++). Learning the language is one thing; learning the hidden language of error messages always takes a lot longer

Monday, March 19, 2007

Personalized Medicine: The long slog

Personalized medicine is a wonderful concept: instead of lumping huge groups of patients with similar symptoms together to be treated with a standard regimen, therapy would be tailored to each patient based on the specifics of their disease. This fine-grained diagnosis would be dtermined using the fruits of the human genome project.

In some sense this is simply an attempt to accerate the long-term trend in medicine of subdividing diseases. From four humors we have moved to a myriad of diseases. In a more specific sense, consider leukemia. In the 1940's, when my paternal grandmother succumbed to this disease, there were (as far as I can tell) less than a half dozen recognized leukemia subtypes; these days there are certainly over one hundred. This is not idle splitting; each disease has its own diagnostic hallmarks, treatment strategies, and outcome expectations. Great (but not universal) success has been achieved with childhood leukemias, whereas some other leukemias are still very grim sentences.

To realize the dream of personalized medicine is going to require a lot of hard work, both in the lab and in the clinic. I'm going to go into some detail on one such endeavor, one which I am very familiar with because I was peripherally involved with it. Now, in the interest of full disclosure, it must be stated that I still retain a small financial interest in my former employer, Millennium Pharmaceuticals, and that several of the authors are good friends. However, it should also be pointed out that while Millennium once trumpeted every baby step towards personalized medicine, the electronic publication of this story engendered no press release. If the company thinks it can't perk up its share price with the story, there is faint reason to think I can.

Multiple myeloma is a malignancy of the antibody secreting cells, the plasma B cells. Two famous victims are the columnist Ann Landers and actor Peter Boyle; a well-known long-term survivor is former vice presidential candidate Geraldine Ferraro. Cancers are often loosely broken into two categories: "liquid" tumors such as leukemias and solid tumors. Myelomas occupy the mushy middle: while they are derangements of the immune system like leukemias, myelomas can form distinct tumors (plasmacytomas) in the body. A hallmark of the disease is bone destruction around the tumors; patients' X-rays can have a 'swiss-cheese' appearance.

Myelomas are a devastating disease, but also occupy an important place in biotech history. Because myelomas sprout from a single deranged antibody-secreting cell, the blood (and ultimately urine) of patients becomes full of a single antibody, the M-protein (also known historically as a Bence-Jones protein). A flash of inspiration led Koehler & Milstein to realize that if they could have that antibody be one of their choosing, then a limitless source of a specific antibody could be at hand. The monoclonal antibody technology which they invented led to a host of useful reagents and tools, including home pregnancy kits. The last decade has finally seen monoclonal antibodies become important therapeutic options, particularly in cancer, and a number are being tried on myeloma: a complete circle.

The drug of interest here is not an antibody but rather a small molecule: bortezomib, tradename Velcade and known in the older literature as MLN341, LDP341 or PS341. Bortezomib works like no other drug on the market: it blocks the action of a large complex called the proteasome. A key normal function of the proteasome is to serve as the cells main protein disposal system, chewing old or broken proteins back into amino acids. Destruction of proteins by the proteasome can also be a regulated process and appears to be a component of many genetic processes.

Bortezomib has been tried as a therapeutic agent, either alone or in concert with other drugs, against a wide array of tumors. It has disappointed often, still tantalizes in some areas, and has received FDA approval for two malignancies: multiple myeloma and another B-cell malignancy called mantle cell lymphoma.

Early in the clinical trial process Millennium decided to build a personalized medicine component into the main Velcade trials in multiple myleoma. The justification for this was a mix of different ideas: including a desire to show results in personalized medicine, a potential to use the personalized medicine element to support FDA approval should trial results be equivocal, an opportunity to understand why myelomas are sensitive to proteasome inhibition.

The design was both simple and audacious: in each trial patients would be asked to supply a bone marrow biopsy for analysis by RNA profiling, which can examine the levels of each gene's mRNA. It sounds simple; in practice this would use a cutting edge technology (RNA profiling) notorious for sensitivity to sample processing. It would also be the first use of such technology in a prospective clinical trial; prior publications had either used archived samples or new samples from available patient populations. Protocols would have to be devised, staff trained at each clinical center in a multi-center trial.

The results can now be seen in Blood as Mulligan et al. You will need paid access to the journal to read the details, which most large academic libraries should have. Also, the sponsors of Blood (American Society of Hematologists) have some mechanism for patient access -- and eventually (I think it is 6 months) they make everything free. The data supplement and methods supplement are free.

Table 1 gives you some hint why few companies will be eager to invest in this kind of study again, as it details how many samples actually made it to the analysis. One can envision the path from trial to data ready to analyze as a pipeline of many steps, each of which is leaky. Patients must consent, the myleoma fraction purified, RNA captured, arrays analyzed and finally useful survival data obtained. Patient consent refusals (or later paperwork deficiencies), poor samples, patients lost to follow-up, etc. eat into the starting material. Even good clinical luck can be problematic: one of the key bortezomib trials was halted early because the drug was clearly working better than the control drug. This was great news for patients, who needed (and still need) more treatment options, and great news for the company, which could more quickly obtain approval to sell the drug. But it both deprived the personalized medicine study of anticipated patients and muddied the waters on many others. For example, samples had been obtained from control arm patients, but now many of these patients were crossing over to bortezomib and were no longer useful controls.

How leaky was the pipeline? Four clinical studies had RNA profiling components (another complication; each study was on a different trial population, with different disease characteristics). Looking at evaluable survival (meaning the patient stayed in the study long enough to figure out if the drug helped them live longer or not): 13%, 22%, 23% and 22% of patients from the 4 trials (024, 025, 039 & 040 respectively) had data for evaluation.

On the other end, many studies were accumulating information that myleoma has many genetic subtypes: perhaps at least seven or so major ones, and many of these can be further subdivided. For example, one major translocation driving myleoma involves a gene called MMSET. In a subset of these patients, a second gene (FGFR3) is also activated by the translocation. Many other classical clinical measures are used by clinicians, such as albumin and CRP levels. A very interesting question would be whether bortezomib had greater or lesser activity in any of the subtypes (or sub-subtypes); but with the ferocious sample attrition, the sample numbers just aren't great enough to be able to draw conclusions. This also illustrates the power & problem of RNA microarrays: you can look at tens of thousands of genes, allowing you to find patterns with few preconceived biases. But, you are looking at tens of thousands of genes, so the multiple testing problem is very acute.

The other thing most frustrating about this study, as in a large number of RNA profiling studies, is that there is no Eureka! moment coming from the data. Gene sets were successfully identified which can predict response or survival, but what do they mean? The hope that RNA profiling would provide the Cliff's Notes to a tumor is a hope rarely realized; instead the tumor reveals a nearly inscrutable scrawl. The study succeeded scientifically, but commercially it was not a contributor.

This will probably be more the norm than the exception in the quest for personalized medicine. Huge investments will need to be made in large clinical studies, many of which won't bear fruit, at least immediately. Combined with other myleoma studies, the Mulligan et al study will enhance our knowledge of myleoma. The execution of the study provides a roadmap for other such studies. New technologies are available which weren't when these studies began. In particular, for cancer one might opt for DNA profiling to map the underlying genetic makeup of the tumor (greatly hashed), rather than RNA. While RNA is where the action really is, DNA is much more stable and therefore may lead to results more consistent between clinical sites. And once in a while, a study might just have results that have oncologists running through the streets, making the whole exercise worthwhile.

Wednesday, March 14, 2007

Cancer Kinases

Last week's Nature had a big paper from the Sanger surveying human protein kinase gene hunting for somatic mutations in cancer. The paper (and a News&Views item; alas, both require a subscription) has deservedly received a lot of press coverage, but a few notes.

First, it is important to underline that this is a first discovery step which associates these mutations with cancer, but it certainly can't guarantee that they are involved. Tumors generally have very battered genomes; indeed, the study noted more mutations in tumors likely to have undergone extensive mutagenesis (defects in DNA repair, smoking-related lung tumors, melanomas from skin exposure, tumors in patients treated with mutagenic oncologic drugs). A useful filter is to compare the ratio of synonymous to non-synonymous mutations, that is those mutations which do not change the amino acid coded in the message vs. those that do. Synonymous mutations should be (to the first approximation) not selected against, so they can be used to estimate the background mutation rate. If a non-synonymous mutation is seen more often than expected, it is inferred to have been selected as advantageous.

One interesting side observation is that in some tumors there is an excess (vs. random chance) of mutations at TC / GA dinucleotides (or TpC / GpA as written -- a common convention to specify that this means T followed by C and not any dinucleotide containing T and C). Such a pattern was not observed in germline (normal) samples from the same patients nor has it been observed previously, suggesting a tumor-specific mutational process.

Protein kinases are an obvious set to look at because so many are already known to implicated in cancer and drugs targeting kinases have already been found useful in the clinic. Indeed, this week the FDA gave the first approval for Tykerb, another small molecule drug targeting oncogenic kinases. The kinases found in the study include many kinases already well implicated in disease. For example, the same group had previously found BRAF mutated in many melanomas. I've discussed STK6 (AuroraA) in this space previously, and STK11 (LKB1) is a well studied tumor suppressor. But there are some interesting surprises. For example, in the list of the top 20 kinases ranked by probability of carrying a cancer driver mutation, there appear to be at least two kinases that are essentially completely uncharacterized in the public literature, MGC42105 & FLJ23074. Another interesting hit is the top one in the list: titin, a protein that hugely deserves its own post. Titin's functions in muscle are well characterized, but a role in cancer would appear to be new. A mutation in KSR2 which resembles kinase activating mutations in other kinases is interesting, as KSR2 has at least sometimes been thought to be an inactive pseudokinase. AURC, whose role in anything remains controversial, shows up with a mutation in a key part of the ATP-binding pocket (P-loop).

There will be a lot of work to actually nail down the role (or lack thereof) of these kinase mutations in cancer. Many other experiments, such as RNAi, have been targeting kinases to try and identify roles in cancer. Most of the mutations observed here were seen in only a few tumors, so there will be lots of work to screen more tumor samples and important cell lines for these mutations. Finally, there are a lot of other genes and gene families (e.g. small GTPases) worth looking at.

However, this is all still very expensive (though the total sequence data, while huge by most standards -- 274Mb of final sequence, pales next to Venter's metagenomics cruise of 6.3Gb). An important question is to what degree should research dollars be invested in these studies vs. other important functional studies (such as RNAi & conditional mouse models, to name just 2). While new sequencing technologies will bring down the costs of large scale sequence scanning, the cost will not go to zero. Balancing the approaches will remain a great challenge for the cancer research community.

Tuesday, March 13, 2007

Sailing the Genomes Blue

Today's Wall Street Journal had an item on Craig Venter's new publication in PLoS Biology describing the collection and metagenomic sequencing of seawater from around the world. You'll need to have paid access to the WSJ, or find a print copy (my access), or perhaps it will show up on a free newspaper site at some point (many WSJ articles do via the wire services). Further information is available on the expedition's website, including pictures of their sailboat Sorcerer II.

The raw numbers are amazing: 6.3 Gbp of raw data -- or about 1.5 human genome equivalents -- and all apparently by 'old-fashioned' fluorescent Sanger sequencing. Samples were collected at regular intervals along the sailing route

There's a lot in the paper, and I won't pretend to have read all of it. One interesting bit is what the authors call 'extreme assembly'. Whereas most genome assembly schemes attempt to minimize the probability of getting chimaeric assemblies (with data glommed together that should be apart), this approach tries to get as big an assembly as possible -- as long as 900Kb from this dataset. While chimaeras are expected (and found), the hope is that you can untangle the knots later but that these extreme assemblies will be useful in collecting sequences together that should go together.

One other nice bit: in addition to deposition at NCBI, the data & tool set will be made freely available at a site called CAMERA. One of my long-held idealistic beliefs in the genome project & bioinformatics is that it can be a great leveler of educational institutions (or more properly, a great boost for many smaller schools). With hardware which is increasingly cheap & ubiquitous, any undergraduate (or high school student!) can do interesting analyses using tools and data which are freely accessible. As an undergraduate, our budget for sequencing was about one kit per semester (and these were the pre-ABI days -- we're talking radioactive dideoxy here) -- and with a little bad luck we never got any useful data. I dabbled with public sequence data then -- but how little there was. Now, an undergraduate funded far worse than I was can have an endless supply of explorations.

The WSJ item brought out one interesting incident: at one point Venter and his crew were apparently placed under house arrest in a Pacific island nation (I forget which one; it was in the article). Treaties on bioprospecting give nations to the right to regulate such activities in their territorial waters, and Venter apparently didn't have the correct permits. Of course, the seawater bugs are probably rather deficient in critical documents such as passports, nor do I expect they swear allegiance to any nation.

Venter has, of course, obtained the career status many claim to dream of (particularly in the context of mega-lottery winnings): he is independently wealthy & gets to combine his favorite leisure activity with further promotion of his scientific interests. Color me several shades of green.

Monday, March 12, 2007

You say tomato, I say $tomato

When I first started programming thirty or so years ago, my choice of language was simple: machine code or bust. I didn't like machine code much, so I never wrote very much. A pattern, however, was established which would be maintained for a long time. A limited set of computer languages would be available at any one time, and I would pick the one that I liked the best and work solely in that. Machine code gave way to assembler (never mastered) to BASIC to APL to Pascal. Transitions were short and sweet; once a better language was available to me, I switched completely. A few languages (Logo, Forth, Modula 2) were contemplated, but never had the necessary immediate availability to be adopted.
A summer internship tweaked the formula slightly -- at work I would use RS/1, because that's what the system was, but at home I stuck to Pascal. For four years of college this was the pattern.

Grad school was supposed to mean one more shift: to C++. However, soon I discovered the universe of useful UNIX utility languages, and sed and awk and shell scripts started popping up. Eventually I discovered make, which is a very different language. A proprietary GUI language based on C++ came in handy. Prolog didn't quite get a proper trial, but at least I read the book. Finally, I found Perl and tried to focus on that, but the mold had been broken -- and for good measure I wrote one of the worlds first interactive genome viewers in Java. My thesis work consisted of an awful mess of all of these.

Come Millennium, I swore I would write nothing but Perl. But soon, that had to be modified as I needed to read and write relational databases, which requires SQL. Ultimately, I wanted to do statistics -- and these days that means R.

There are a number of computer language taxonomies which can be employed. For example, with the exceptions of make, SQL (as I used it) and Prolog all of these languages are procedural -- you write a series of steps and they are executed. The other three fit more of a pattern of the programmer specifying assertions, conditions or constraints and the language interpreter or compiler executes commands or returns data according to those specifications.

Within the procedural languages, there is a lot of variation. Some of this represents shared history. For example, C++ is largely an extension of C, so it shares many syntactic features. Perl also borrowed heavily from C, so much is similar. R is also loosely in the C syntax family. All of these languages tend to be terse and heavily use non-alphabetic characters. On the other hand, SQL is intrinsically loquacious.

The fun part is when you are trying to use multiple languages simultaneously, as you must keep straight the differences & properly shift gears. Currently, I'm working semi-daily in Perl, SQL and R, and there is plenty to catch me up if I'm napping. For example, many Perl and R statements can interchange single and double quotes freely -- as long as you do so symmetrically; SQL needs single quotes around strings.
Perl & R use the C-style != for inequality; SQL is the older style <> and in paralled Perl & R use == for equality whereas SQL uses a single = -- and since a single = in Perl is assignment, forgetting this rule can lead to interesting errors! R is a little easier to keep straight, as assignment is <- . R and Perl also diverge on $ -- for Perl it precedes every single value (scalar) variable, whereas in R it specifies a column of a table. I haven't done C++ or Java for over ten years, but my mind still wants to parse an R variable foo.bar as bar is a member of class instance foo (perhaps because that's the SQL idiom as well), but in R the period is just another legal character for composing a name -- and in Perl it's yet another syntax ( ->{'key'} ) to access the members of a class.

While I know all the rules, inevitably there is a mistake a day (or worse an hour!) where my R variables start growing $ and I try to select something out of my SQL using != . Eventually my mind melts down and all I can write is:
select tzu->{'name'},shih$color from $shih,$tzu where shih.dog==tzu.dog

which doesn't work in any language!

Wednesday, March 07, 2007

Eight Ligands A Leaping

There are few things you can appreciate better than something you have striven hard at yet failed. For a bit of time I was a minor expert in G-protein coupled receptors (GPCRs) -- well, really just the curator of a private database.

GPCRs are molecular wonders. The human genome contains around a thousand of so, but a large fraction of these are olfactory receptors -- our detectors of scents. These are organized into at least three major sequence families -- there were always a few more trying to break in, and I've lost track of the current opinion on these unusual families.

GPCRs have two key characteristics. First, they signal by coupling to heterotrimeric GTP-binding proteins, or G-proteins. Second, they have seven membrane spanning domains. Indeed, the main reason to claim some new looks-like-nothing-else protein as a GPCR was the prediction of this seven transmembrane, or 7TM, character. That 7TM character also makes them crystallographic sinkholes -- I think it is still true that only one crystal structure has been reported (bovine rhodopsin).

GPCRs have an amazing variety of ligands, ranging from small proteins to peptides to sugars to lipids to nucleotides to what have you. As mentioned above, our sense of smell is largely driven by GPCRs -- the discovery of this large subfamily led to a Nobel prize. All sorts of molecules have smells, suggesting the versatility of these proteins. Some fundamental tastes are also detected by GPCRs. Our very entry into this world is governed by a GPCR (oxytocin receptor). Perhaps the most amazing GPCRs are those that detect light and enable our vision. While a photon isn't truly the ligand for these receptors (a photoisomerization product of a covalently bound small molecule is), it is fun to think of it that way. If someday a physiological role is found for a noble gas, I wouldn't want to bet against a GPCR being the receptor for it.

GPCRs are also key drug targets. Many neurotransmitters are detected by GPCRs, along with many important hormones. Because they are such important drug targets, special care was made by every genomics company in sifting through their data to ensure that no GPCR slipped through unnoticed. Many that were found resembled olfactory receptors and probably are -- though sometimes they are clearly expressed in rather peculiar places outside the nose.

Once found, life is not easy. In order to configure a high-throughput screen for a small molecule (a few GPCRs are antibody targets, namely the chemokine receptors), you really need to know what the input is and which G-protein the output is sent out on. This also doesn't hurt in deducing the physiological role for the GPCR. The G-protein is the easy side. The specificity is mostly in the alpha subunit, which there are around 20 of but which also fall into a few subfamilies. Most GPCRs talk to only one of these subfamilies, and better yet for drug discovery there are mutants which seem to be rather promiscuous. So that's taken care of.

But finding a ligand: good luck! Again, since GPCRs seem to bind anything you can assume a novel one might bind just about anything. Treeing them with their kinfolk can suggest possible ligand classes, as neighborhoods on the tree will often have similar ligands, but that's no help if your novel GPCR doesn't look much like the rest. So every lab would throw a small kitchen sink of candidate ligands at their 'orphan' GPCRs and look for a signal -- and based on our experience & what's in the literature, that wasn't very often. New ligands would appear, often in small cascades -- once a new class of ligand was identified (such as short chain fatty acids), then a slew of papers would follow after a bunch of these had been explored on orphan receptors. But the last time I checked my database of receptors of interest without ligands, the list was still long.

One interesting possibility is that some of these receptors don't have specific ligands, because they may not function on their own Heterodimerization of GPCRs has been reported, and other families of receptors (kinases, nuclear hormone receptors) show how proteins lacking in some key receptor functions can still be very important via heterodimerizing with close relatives.

So it is with a bit of envy I view the recent press release from Compugen, an Israeli company that built an informatics approach to identifying novel transcripts and splice variants. They report finding, and demonstrating the function of, eight novel peptide ligands for GPCRs, some for orphan GPCRs and others as additional ligands for previously characterized ones. These are a challenging problem -- one which I and several more clever people at MLNM beat their head on -- and clearly Compugen has done well. Part of their identification relied on finding characteristic amino acid motifs recognized by the proteases which process these peptides -- many peptide GPCR ligands are clipped from larger precursors. Often, multiple ligands are encoded by the same precursor. Finding novel precursors is not trivial -- not only are they very short open reading frames, and therefore are difficult to distinguish from random open reading frames appearing in DNA, but many are also on fast evolutionary clocks -- which means that finding these peptides by cross-searching the human and mouse (for example) genomes isn't always much help.

So hats off to Compugen. I would be shocked if we are done finding GPCR ligands, but to find eight at once is quite an achievement.

Monday, March 05, 2007

What's in a title?

Boston has two major daily papers, The Boston Globe and The Boston Herald. The Globe is the more stately broadsheet, whereas the Herald revels in being the sensational tabloid. My tastes tend strongly towards the Globe, though it sometimes seems more like The Boston Glob, but I do browse the Herald -- when I can get it for free. Yes, I'm a bit of a newspaper snob -- though nothing like James D. Watson, who would apparently put down the Herald (and by extension readers of that paper) on a daily basis when he was at Harvard (I got this first hand from his glasswasher -- who read a Herald daily).

While I have no love for the Herald's style & quality of journalism (e.g.: when the Globe fired a populist columnist for plagiarism, the Herald gleefully scooped him up), I do enjoy their screaming headlines. Short, pithy & fun -- though accuracy and fairness clearly aren't strong selection criteria.

The headlines in scientific journals and newswires tend to be long on long and short on punchy. Perhaps some is an urge to cram as many keywords as possible into the title, and perhaps some is a deliberate desire for dryness. While these titles often fit the purpose, it isn't uncommon to be able to rewrite one for more zazz, especially if you are emailing abstracts to a colleague rather than editing a journal.

Of course, one advantage of long and ponderous is a single possible meaning -- spell it out in detail, and nobody can misinterpret it accidentally -- or deliberately. Rarely can a scientific paper title or newsfeed item become a candidate for Jay Leno's headlines schtick, but it does happen. GenomeWeb is usually a good provider of useful news, but the other week I got a grin out of a headline that could be seen as a politically incorrect description of enlisting patients in their own cause
Sick Kids to Use GenoLogics' Geneus Software in Multi-Lab Stem Cell Research
. Of course, the item really refers to The Hospital for Sick Kids in Toronto.

Other times, someone does put together a clever headline that grabs the eye -- usually with a clever name for a hypothesis
Retaliatory mafia behavior by a parasitic cowbird favors host acceptance of parasitic eggs
-- now there's a memorable piece of jargon!

However, I do not like titles to mislead.
The calorically restricted ketogenic diet, an effective alternative therapy for malignant brain cancer.

If you skip to the bottom of the abstract, it's even worse
This preclinical study indicates that restricted KetoCal(R) is a safe and effective diet therapy and should be considered as an alternative therapeutic option for malignant brain cancer.

It's an interesting idea (with precedent in the literature), but 'safe & effective'? The key term left out of the title is 'xenograft mice'. Only proven so if you are a xenografted mouse, a population for which a huge variety of 'cures' already exist. The abstract as a whole isn't bad, but I'll hardly be shocked if I start seeing ads touting the final sentence without qualification.

Wednesday, February 28, 2007

Tinker, Tailor, Soldier, Gene.

In very old movies (or so it is said), the good guys wore white hats and the bad guys black ones. This made it easy to sort out who was who and keep track of everyone's allegiances. In introductory classes, simplifications enable nice simple classifications: these are the enzymes of glycolysis, these are the Krebs cycle, etc.

The yearning for such simplicity remains, even in the face of far more complex situations. We want to have clean lists of pro-apoptotic or anti-apoptotic genes, but the reality is that some proteins play all the angles. Depending on the situation, their splice form, their translational state, etc., the protein can either push a cell towards or away from death. Similarly, we would like to classify proteins as either tumor promoting or tumor preventing and somehow alter the balance in the cancer patients favor, often by inhibiting the pro-tumor protein with a small molecule or antibody therapeutic.

One set of such molecular target are the Aurora kinases. Aurora was originally identified in the fruit fly and shown to be a serine/threonine protein kinase (an enzyme that adds a phosphate to the hydroxyl group on Ser or Thr). Later, 3 aurora homologs were identified in mammals, and the monikers Aurora A, B & C were eventually settled on. Aurora B and C are nearly identical, which has advantages since the exact role for C has been argued about a bit; from a pharmaceutical standpoint B and C are the same target, because it is probably impossible to generate a compound targeting the proteins which can distinguish them.

A number of pharmaceutical companies, including my past employer, have small molecules in development targeting either AurA or AurB/C or both; various arguments exist as to which specificity makes the most sense, and it can probably be only sorted out in the clinic. Vertex & Merck are, the last I heard, the most advanced with their compound (in Phase II), and in a stroke of luck it turns out to target another therapeutically interesting target, Jak2.

A lot of good biology has suggested that Aurora should make a good cancer target. Some of this is from various cell culture and xenograft (human tumor cells implanted in mice) studies, but there is also good evidence from clinical samples. Polymorphisms (e.g. this report) and amplifications (e.g. this one) in aurora genes have been observed in many human tumor samples. The fact that Merck/Vertex have taken their compound into Phase II suggests that they saw activity in Phase I, as only desperate biotech companies push a Phase I oncology drug candidate forward without some hint of efficacy.

An abstract in the most recent issue of Cancer Cell looks intriguing & food for thought. This report describes finding reduced Aurora A levels in several tumor models, with the reduction coming via gene silencing or deletion. Since many tumors are null for p53 function by one hook or crook, the idea that p53- tumors might benefit from lower Aurora A activity casts a bit of a question on Aurora A-targeting drugs, which might well include Aurora B targeting drugs as the two are too similar to truly avoid touching Aurora A to some degree.

It will be interesting to find out whether in the natural progression of some human tumors there is a phase where Aurora A is tumorigenic but a later phase where it is tumor suppressing. Perhaps, like many a spy in a Le Carre novel, AurA's reward for a job well done is a carefully arranged ambush when it has outlived its usefulness.

Tuesday, February 27, 2007

Which Biotech Ben?

As a follow-up to yesterday's post about bioeconomics, those huge pools of red ink: where did the money go? After all, nobody was shredding historic portraits for mouse bedding or running high throughput screens on treasury note extracts. The money went somewhere, but where? If the biotech industry has lost a lot of money, who was making out on the deal?

Employee compensation tends to be a big ticket item, so a lot went to the biotechies (especially the executives). Scientific supply houses obviously took a good sized slice of the pie. Insurance companies get their cut. Real estate is always expensive, plus the gazillion refittings of office and lab space, which means a cut for the construction industry. Outside law firms and financial advisors (deals! deals!) make out well too. Throw in the office supply houses, computer suppliers, travel agencies, catering firms, etc. Academia did well on licenses. It would be interesting to see a tally and figure out which industry did the best on biotech.

Of course, a big chunk of the money went to other firms in the sector -- some as suppliers (Invitrogen, ABI), but more than a little to other money-losing biotechs. For example, my previous employer had deals with Incyte, Xoma, Immunogen and others. I'm sure each of them had further deals with other cash burners in the sector. Some poor dollars might have worn out going from one red ink generator to another.

If the bills animated beings rather than lifeless paper, then what figure would be on the $100 bill? Would it be Dr. Benjamin Franklin, thrilled to be going from one exciting scientific endeavor to another? Or would it be Poor Richard, constantly complaining "Has no biologist ever heard 'A penny saved is a penny earned.'?

Monday, February 26, 2007

The Bio Economy

Derek Lowe has another post about the Biotech industry's glorious pool of red ink. A number of the comments are useful to think about -- perhaps most industries go through such a long boot phase, but we forget because we watch them when they are established (and often in decline).

Thinking about biotech losses reminded me of the parallels that are often drawn between the human world and the cellular world. The molecule adenosine triphosphate, or ATP, is often described as the currency of the cellular world. This is because it is the most common driver of reactions in the cell. There are other such molecules, such as ion gradients & ATP's cousin GTP, but ATP is far-and-away the most common currency -- the dollar of the molecular economy.

There is a key difference between human currency and molecular currency, one that I confess I never can quite convince myself I understand on the human side. While there are occasional money changing operations in the cell, such as using ATP to regenerate the other nucleotide triphosphates, when ATP is used to drive a reaction the energy the currency is consumed. While sometimes that energy sets up another process, many times the chain of payment ends there. When a kinase phosphorylates a protein, there is no regain of that ATP when the phosphate is kicked off by a phosphatase. When nucleotide triphosphates are used to build DNA or RNA, that energy is used forever.

But in the human world, our dollar bills don't crumble each time we use them. I bought a pizza tonight, the pizza shop will in turn pay its suppliers and employees, who will spend the money again and again and again. Nowadays the bulk of my transactions are purely electronic (such as the pizza purchase), so there is no money to crumble. It's never been obvious to me the economic equivalents of entropy; the economy seems too close to a perpetual motion machine to be believed.

There are a few other parallels though. For example, glycolysis initially requires an investment of ATP to yield far more ATP; you need money to make money! Some molecules use clever barter strategies to avoid needing to deal with currency -- for example, DNA topoisomerases perform bond swapping maneuvers so that they can rejoin the DNA they have broken without requiring any further ATP. Money makes the world go 'round; ATP makes bacterial flagella go 'round.

Gotta go -- as they say, time is ATP!

Sunday, February 25, 2007

Challenging writing assignment

An interesting idea -- try writing this in a new manner my internet site specific. Easy? I wish! Very stilted sentences -- perhaps can lessen with practice. Limits apparent in references: Cell? Science? -- Yes! Fine English scientific paper display? Negative! Erratic grammar style? Perhaps. Self name? First and middle; lacking familial. Site name? Nein! Events? Iraq fits. Gagarin fatherland? Nyet! My allegiance fails as well.

Despite my trials, life wins with it.

Can reader infer pattern?

Challenge: Increase length and clarity vis-a-vis my attempt.

Friday, February 23, 2007

The First Tree

I had the opportunity yesterday to visit Boston's Museum of Science & there were two special treats in store for me. First, a magnificent display of the late Bradford Washburn's mountain photography. Right next door was an exhibit on the life and impact of Charles Darwin.

The Darwin exhibit focuses on his life but also touches on why his theory is so central to modern biology. There are some of his actual notebooks (of facsimiles). On one of these, I believe an original, is the first evolutionary tree -- a sketch by Darwin early in his contemplations. At the top, in jubilant exclamation, is "I think!". What an understatement!

Tuesday, February 20, 2007

Tightening the Border?

Biology is a complex subject and it is sometimes very difficult to properly track one's ignorance of the topic. If you aren't aware of that, then sometimes a remarkable result isn't quite as remarkable.

Yesterday's news contained an item reporting that Genentech's Avastin, an antibody targeting Vascular Endothelial Growth Factor (VEGF), a protein which stimulates the growth of new blood vessels (angiogenesis), shows promise for treating gliomas, a deadly type of brain tumor. A little bit of the newswire item read:

An estimated 18,000 people are diagnosed with gliomas in the United States each year, according to the American Cancer Society.

They are difficult to treat because many drugs cannot reach the brain.

What this item failed to point out is that Avastin is precisely one of those drugs which wouldn't be expected to cross into the brain!

A defining characteristic of cells is a surrounding membrane made of lipids, fat-loving molecules. Embedded in these lipids are proteins. Molecules can enter cells by two routes: either going directly through the lipid layer or being transported across by specific proteins. Lipophilic ("fat loving") molecules go easily through the membrane, but hydrophilic ("water loving") molecules go through slowly if at all on their own. In particular, anything very large or significantly charged will not pass through the cell membrane without the help of a specialized protein, a transporter.

Transporters can be classified a few different ways. Passive transporters consume no energy to move their cargo, and hence can only move things down a concentration gradient. Active transporters can consume energy to move things against a concentration gradient. Exchangers (antiporters) swap one thing for another, such as sodium ions for potassium ions, and can transport one against a concentration gradient -- so long as the other is moving down a concentration gradient. Symporters move two compounds at once in the same direction.

The junctions between cells in a tissue are usually somewhat leaky, and so compounds transiting from one compartment (say the inside of the intestine) to another (such as the interior of a capillary) can either go through the cells or around them. Many drugs are actively transported, hitching a ride on some transporter that mistakes them for their proper cargo. But others simply diffuse between the cells or across the cells separating the two compartments.

The brain is a different story altogether: a system of super-membranes and tightly welded interfaces ("tight junctions") between cells provide a strong barrier. In general, anything which gets across this Blood Brain Barrier (BBB) is moved by active transporters in the cell membranes. Large proteins, and antibodies in particular, are something the BBB keeps out.

When we are healthy, the BBB is clearly a good thing, protecting the brain from stray chemicals that might harm its delicate workings. Many drugs that would otherwise harm the brain are excluded by the BBB, which means the drug can be safe to use. But when we have brain disease, the BBB becomes a serious challenge, as many important drugs will not cross it. And again, antibodies are high on the list of excludees.

I was lucky enough to attend ASCO last summer, the unbelievably yearly U.S. confab of clinical oncologists. There are dozens of things happening simultaneously, so you can never attend everything you want to. One session I did attend was on brain tumors, and there an interesting fact came out: in many brain tumors, the BBB becomes less functional in the neighborhood of the tumor. Indeed, what at least one group was trying was to inject patients with an imaging agent which normally doesn't cross the BBB and trying to correlate the ability to light up the brain with clinical outcome.

So this suggests the explanation for the curious anomaly which the newswire item overlooked. Antibodies shouldn't work in brain tumors, but perhaps Avastin works precisely because the brain tumor changes the rules -- and because Avastin may be working exactly where the rules have changed. Even with partial BBB functional breakdown, most of the tumor may still be inaccessible to many chemotherapeutic agents. However, right where the BBB is breaking down may be where angiogenesis active (indeed, this may be part of the driver of the breakdown) -- and so Avastin, by targeting this very process, can function. The exception to one rule works precisely because of another exception to the same rule!

Thursday, February 15, 2007

A Novel Wooden Shoe

It is increasingly clear that many pathogens do not simply assault our bodies, but truly attempt to infiltrate them and co-opt normal cellular processes to their ends. A number of recent papers have described kinase-based strategies employed by Plasmodium and Toxoplasma.

Protein kinases are critical players in cellular signal transduction. By attaching a phosphate group to a serine, threonine or tyrosine (and occasionally, at least known to date, histidine) they can radically change the local structure and charge distribution of the substrate protein. This can in turn trigger intramolecular rearrangements or alter protein-protein interactions, which can cascade in numerous ways. Tapping into this network is potentially a devastating way to sabotage the host's cellular machinery.

Kinases are opposed in their action by protein phosphatases, which knock the phosphates off the proteins. In most cases, kinase and phosphatase can easily interchange the states of the protein; there can be infinite back-and-forth so long as the protein sticks around. A few cases have been found where re-phosphorylation is presented by glycosylation of a residue -- the same side chain oxygen can't have both at once. But glycosylation can also be reversed, so this so-called yin-yang regulation simply adds a third possible state. A quick PubMed search reveals at least one reported example of host phosphatases being manipulated by a pathogen, albeit indirectly.

The newest Science adds a new pathogen sabot to those uncovered previously. Instead of merely stripping the phosphate off and leaving an exposed hydroxyl for re-phosphorylation, in this example the Shigella protein is a phosphothreonine lyase, an enzyme which actually modifies the side chain, abstracting both the phosphate and a hydrogen and leaving behind a double bond (see Figure 3D). Hence, the kinases so altered cannot be re-phosphorylated -- they are now permanently disabled. Since such dead proteins have the ability to tie up functional binding partners, acting as a dominant negative, this is potentially a very effective strategy. Also striking is the fact that a phospho-amino acid lyase activity had not described previously. It is difficult to believe this is the last novel biochemical strategem we will find in a pathogen's playbook.

Wednesday, February 14, 2007

Clearing the Gene Patent Thicket

The gene patent issue, which I addressed once before, continues to boil. Derek Lowe has two good back-to-back posts (with another anticipated) on the topic, triggered by a Michael Crichton OpEd piece in the NY Times. A few weeks back there was another opinion piece in the Sunday NY Times, which Hsien Hsien Lei has covered over at Genetics & Health(NY Times articles require free registration).

There are really two classes of concerns, and concern holders, in the debate. At the one end you have the Crichtons and many others who feel that any sort of patenting of genes is improper and immoral. At the other you have a lot of people (such as myself) who believe certain gene patents are appropriate, but that there is a lot of confusion generated by the legacy of past gene patents.

I can understand some of the concern of the Crichton camp. It is true that genes are natural monopolies -- in general, one can't invent around them easily if the goal is genetic testing. On the other hand, some of Crichton's complaints are simply those that are generally levied against any intellectual property protection in biomedicine: that it creates 'unnecessary' costs and unequal access to lifesaving information. But, as last weeks approval of the MammaPrint microarray-based breast cancer diagnostic test reminded, private companies do bring important health innovations to market. Without premiums for the investors to cover the very high risk of failure, such innovations might never reach market.

As an aside, the issue of failure in biotech is nicely covered in another of Lowe's postings, though Xoma? What pikers! Only 0.75B gone through in 25 years -- that's only 0.03B/year. I'm pretty sure a certain company in Cambridge that burned off closer to 1.5B in about 12 years, and Celera must have done even better than that in terms of bucks per year.

There are some other issues to consider in this space. If patent law is altered to exclude gene patents, will it exclude multigene tests? If I make a small change in a protein therapeutic, ala Aranesp, is that patentable? Are other purified preparations of natural products, such as natural-product derived pharmaceuticals, still patentable?

For those of us who feel that gene patents are appropriate, but under well defined restrictions, the current situation is clearly a mess. During the genomics gold rush, companies flooded the patent office with applications. The general assumption was that these patents would probably be worthless -- but that nobody could take the chance that the courts & Patent Office would decide otherwise. Until one was litigated, nobody knew how things stood -- and nobody felt they could afford to wait around and potentially find themselves naked. From the regulatory ambiguity of the time sprung a gazillion patents. The paralegals used to book me for an hour at a time just to sign patent forms -- since I wrote the software that tag things as 'worth' patenting, I was a co-inventor or sole inventor on many dozen applications. Most of my applications are dead, but there is a horrible mess out there.

Now these patents would just be irritating if they only gave fodder to writers, but there is a real cost to society of them. I was at a Celtics game recently with a friend and a bunch of his buddies, several from his law firm. One specialized in biotech law and was quite confident that none of those genome era patents would hold up under legal assault. But it is that very risk of litigation that hangs a cloud over everything. If you are working on these genes, prudence says that you must review all of those patents, and perhaps worry about them even though they are junk. The same sort of uncertainty that led to these patents continues to make them a problem.

So, I would like to make the following proposal. It won't interest the 'gene patents are evil' crowd, but I will claim it would make good public policy. An organization should be set up and funded with the goal of retiring mass numbers of the gold rush patents. At regular intervals, the organization would hold a Dutch auction to buy up blocks of patents. You couldn't sell them individual patents, only large batches. Once purchased, the organization would have the patents cancelled (if that isn't available in the current law, then that would require some legislation). Or, the organization would somehow be a legal black hole for the patents, forbidden to ever sell them or defend them in court. Not only would the regular auctions slurp in patents, but they would establish a market value for the patents -- and so profitable companies might just donate blocks of patents instead of selling them to reap tax benefits.

The last thing one would want to do is create more incentive for junk patents. The regular auctions would be capped so that these patents would be selling for cents on the dollar spent to get the patents in the first place. Only patents of a certain age range would be taken, perhaps nothing younger than 5 years old. Nobody's going to make a profit on this, but for companies stuck with lots of essentially worthless patents, this is free money. But because it is delivering a value to society, by reducing the overhead imposed by all those patents, I would argue it is a worthwhile expenditure.

This approach wouldn't solve the junk patent problem, and it clearly wouldn't address the patents that biotech executives think do have value. The controversial ones will all fall in that category, as they are controversial precisely because they can transfer money to entrepreneurs. Public debate about patenting is healthy & appropriate, but let's think carefully about unexpected consequences.

Tuesday, February 13, 2007

Valentine's Reading

Since tomorrow is Valentine's Day, I was going to suggest a good book appropriate to the date. As is often the case, that book suggests some others in a chain until we finally get back to another book appropriate for the day, though unfortunately for that very reason it is not a good book.

The first book presents a small challenge. While I would never consider myself a prude, its title could potentially cause filters everywhere to flag this site as unsuitable for the younger set (I'm sure a lot of elementary school kids read the site fanatically). But, I hate to be one to change content, especially in a book's title. There's nothing actually pornographic about the book, except the cover -- but only if you have six legs & antennae. So, I will write out the title, but you will need to translate one word.

The book is Olivia Judson's Dr.Tatiana's TCTGAANNN Advice to All Creation. The book is structured as a series of letters to an advice column, letters from various creatures perplexed by misadventures in their love life. Fish who wake up a different gender, mice who are sure their mates are cheating on them, etc. While the schtick could have worn thin, I enjoyed it throughout. She uses a lot of humor, but also details the myriad of reproductive strategies found across the animal world (if I remember correctly, some bacteria slip in near the end). Since reading the book, I can't help but read a story on a novel strategy and think: That would make a great Dr. Tatiana letter. I also get warm inside thinking pondering the notion that Dr. Tatiana should be required high school biology class reading. On the one hand, the students might actually want to read the book! Even better would be the reaction of certain folk, who would be having a hard time deciding whether to be more upset about the S word or about the E word sprinkled throughout (Evolution).

Judson turns out to be the daughter of Horace Judson, whose The Eighth Day of Creation is another must read. Eighth Day describes three of the major early thrusts of molecular biology: the assault on the nature of DNA and the genetic code, the quest to understand gene regulation and the first solving of protein structures. I won't claim it is a small book (686 pages -- and not a large typeface!) or light reading, but in many places you can begin to feel the excitement those pioneers felt as they pushed forward and some of the outsized personalities of the scientists. Some biotech books capture this: Invisible Frontiers (about the early days of recombinant DNA work & the race to clone insulin) and The Billion Dollar Molecule (about the founding of Vertex Pharmaceuticals) would fall into that category; two books I read more recently (and have forgotten the titles) failed miserably -- just the facts ma'am (which has something to do with my forgetting the titles).

Eighth Day is the work of a professional author and will weigh down your backpack. For a lighter touch, both physically & intellectually, try James Watson's The Double Helix. It is, of course, a memoir and Watson was willing to say outlandish things. The opening line is a classic: "I have never seen Francis Crick in a modest mood". I got to meet Watson two summers ago at a scientific meeting (it is a great sadness I never got to meet Crick) and he is just as verbally audacious in person. But again, it does give some feel for the excitement of the time and how high feelings ran.

But finally, please DON'T read Watson's sequel, Genes, Girls, and Gamow: After the Double Helix. Perhaps with a good editor it could have been boiled down into something enjoyable to read, but I'm not sure there would be enough left. Watson spends far too much time on his social life -- and particularly his love life (egad! it's in the title!). Valentine's Day or not, the last thing I want to read is an expanded version of anyone's, even one of the towering figures of 20th century science, little black book.

Sunday, February 11, 2007

New Cancer Mutation Survey

Tonight's Advance Online Publication section of Nature Genetics contains a new study with an enormous author list (including three former colleagues of mine at Millennium) which surveys 238 oncogenic mutations in 1000 tumor samples from 17 types of cancer. This is a big study, but it should be kept in mind that this is the warm-up for grander schemes.

Alas, Nature Genetics isn't cheap & I don't have access to an electronic subscription, so I haven't read the paper. But from the Abstract, Tables & Figures (JavaScript link on the Abstract page), Supplementary Items and Nature Genetics' blog entry, one can get the gist of the story.

First, some foundation. It is important in this context to think of cancer as an evolutionary disease. Many cells acquire mutations, but only those that acquire mutations that lead to the loss of appropriate growth controls can lead to cancer. Fully progressing to a a tumor requires multiple mutations in almost certainly a stepwise fashion; the odds against all happening simultaneously are too high. Presumably one mutation gives the cell a small advantage & it proliferates. A second favorable mutation within that population leads to a new winner, which proliferates again. And so on, until a full fledged tumor arises -- and then it continues further to select for more and more aggressive variants. Chemotherapy or radiation therapy adds new selective pressures, which now enhance or reduce the fitness of various mutants. It is likely that at all times the tumor is really a population of cells with different genotypes, with constant selection for more 'fit' (i.e. more likely to kill the patient).

There are many mutations that can contribute to cancer, but this paper concentrated on point mutations which activate oncogenes. There are several reasons for this focus. First, high throughput technologies exist for screening point mutations whereas translocations can be complicated to screen (because their molecular details may be quite different between examples). Second, there tend to be a small number of possible activating mutations in oncogenes, whereas there are many ways to inactivate a tumor suppressor. The false negative rate (calling a gene normal function when it is fact abnormal) is therefore going to be much lower for oncogenes.

One focus of the paper is apparently searching for oncogenic mutations that either frequently co-occur or seem to be mutually exclusive. This is summarized in Figure 2. Why would you find such associations?

Frequently co-occuring mutations suggest that they are in some way cooperative. For example, if the tumor can result if two pathways are turned on, but not either one alone (a molecular AND gate), then an expectation is that mutations activating both pathways would frequently co-occur.

On the other hand, mutually exclusive oncogenic mutations would suggest participation in the same pathway -- if one is turned on, you don't need the other one two. For example, if they are in two branches which converge, and activation of either one will create a tumor (a molecular OR gate), then it is unlikely that both will occur. Another case would be for one mutation to be upstream of the other; if the effect of both mutations together is the same as either one alone in activating the pathway, then there would be no selective pressure for both.

Supplementary Figure 3 shows nicely how which gene is mutated strongly depends on the tumor type. This is a well-known phenomenon, but cannot be said to be well understood: why are specific tumor types so driven by particular mutations. In the tumor suppressor world it can be even more stark: why do mutations in BRCA1, which encodes a critical gene for proper DNA maintenance in every cell type, lead to tumors primarily in female reproductive tissues? This is a general phenomenon: there is a long list of tumor suppressors which have been discovered by very tissue-specific cancer syndromes yet are parts of central cellular machinery shared by all cells.

Supplementary Figure 4 gives an overview of how much of the cancers are explained, at least in part, by the mutations surveyed, and Figure 1 shows how much of each tumor is explained by each mutation. The 3D figure has some merits, but personally I would have tried to combine Figure 1 with supplementary figures 3 & 4 in one combined figure (3 might be a stretch, but S4 would fit nicely placed next to the gene axis).

For example, 100% of the pancreatic cancers surveyed had at least one mutation. Given that mutations in KRAS are very common in pancreatic cancer, this isn't totally surprising. 75% of polycythemia vera (PV), a leukemia-like condition were explained; if you go back to Supplementary Figure 3, the JAK2 column is all marked PV. This is a known association, and perhaps one of the more explainable ones (JAK2 is a key regulator of differentiation in the cell lineage that goes haywire in PV).

On the other end of the scale, only 1% of kidney or prostate cancer had a mutation. So in these tumors, something else is going on. In both cases, it is likely that mutations in tumor suppressors explain many of the cases; both tumor types are known to often be mutated in certain suppressors. There is also a big middle: 36% of breast, 50% of colorectal, 32% of lung, etc. Again, in some cases mutated tumor suppressors may be at least part of the story, but there may be other oncogenes unexamined by this study playing as well.

The future promises many more such studies. There are other technologies which can type many thousand point mutants at a time (though there may be other trade-offs; I'm not an expert on this). Ultimately, many investigators want to just sequence away; pilot studies have already been published (if you have a Science subscription, there is a nice letters firefight in the current issue on the topic). But that is a ways away; even with $1000 genomes, the mixed genetic nature of any tumor will make life challenging. But in the meantime, one can expect to see more studies such as this one, but with more mutations and more tumors. More mutations should help fill in the gaps, whereas more tumors would allow much deeper probing of co-occurring and mutually exclusive mutations, as well as detect rare mutation-tumor pairings (such as those listed in Table 1).