A complex combination appears to control appetite
|
The Nature study, by University College London and King's College London, could aid development of new obesity drugs.
Using brain scans, the teams showed the appetite-regulating hormone peptide YY (PYY) produces a more complex pattern of activity in the brain than thought.
It targets not only the primitive areas controlling basic hunger urges, but also the pleasure and reward centres.
PYY is released from the gut into the bloodstream after eating and signals to the brain that food has been eaten.
A nasal spray containing the hormone is currently being trialled to see if it can be used to tackle obesity.
Studies on animals suggest it regulates appetite by acting in primitive parts of the brain such as the hypothalamus and brainstem.
The latest study showed that the same was true in humans.
But the hormone was also found to act in the cortico-limbic regions that determine the pleasure sensations associated with eating food.
The biggest effect of all was found in an area called the orbitofrontal cortex (OFC) - a region thought to make overall sense of the pleasure sensation.
The researchers found that the greater the change in activity in that area, the less the volunteers ate.
Drip tests
Eight normal-weight men took part in the study. After 14 hours without food, they were given a drip of either PYY or a placebo for 100 minutes while their brains were scanned using an MRI machine.
Thirty minutes later they were offered an unlimited meal.
Each volunteer was tested twice, a week apart, once with PYY and once with the placebo.
PYY infusion reduced subsequent average calorific intake by 25%.
Researcher Dr Rachel Batterham, who is funded by the Medical Research Council, said: "In the food-deprived state, brain activity within the hypothalamus predicted how much food the subjects ate.
"However, in the presence of increased PYY levels mimicking a meal, there was a switch in the circuits controlling eating so that brain activity within the orbitofrontal cortex now predicted feeding behaviour."
The researchers hope a greater understanding of how appetite is controlled could help tackle the obesity crisis - 23% of the adult UK population is classified as obese.
Dr Batterham said: "Understanding which brain regions control eating in different environmental conditions may help us to develop more targeted treatments for people with weight problems.
"Further research is now needed to investigate whether underweight and overweight people have abnormalities in these circuits."
Dr Ian Campbell, medical director of the charity Weight Concern, said weight control was not as simple as just counting calories.
He said: "Understanding the way we perceive food, develop the feeling of satiety, and our emotional relationship with food are key to helping an individual to regain control
"What this study seems to do is shed new light on one of the reasons why it's so difficult - more than just a behavioural issue, there may well be complex hormones that influence both the way we think and feel about the food we eat."
Here's two nifty recipies for using a debugger at rumtime:
At any arbitrary moment. Perhaps you've got some process that's long running and you occasionally want to stop it, examine its contents and then tell it to continue. Presumably you'd do the moral equivalent of Enbugger->unimport to remove the debugger.
$SIG{USR1} = \ &start_debugger;
sub start_debugger {
require Enbugger;
Enbugger->import;
}
Start the debugger on exception.
$SIG{__DIE__} = sub { require Enbugger; Enbugger->import };a neat little Perl debugger hook that can be placed in code for automatic breakpoints.
Instead of stepping through code until all the modules are loaded, and then continuing to a line number or a specific method in a module , you can continue to a pre-defined breakpoint. To add such a breakpoint use :
$DB::single = 2;
Here’s some explanatory text on it from Programming Perl:
You can exert a little control over the Perl debugger from within your Perl program itself. You might do this, for example, to set an automatic breakpoint at a certain subroutine whenever a particular program is run under the debugger. From your own Perl code, however, you can transfer control back to the debugger using the following statement, which is harmless if the debugger is not running:
$DB::single = 1;
If you set $DB::single to 2, it’s equivalent to the n command, whereas a value of 1 emulates the s command. The $DB::trace variable should be set to 1 to simulate the t command.
200409 200412 200501 200502 200503 200504 200505 200506 200507 200508 200509 200510 200511 200512 200601 200602 200603 200604 200605 200606 200607 200608 200609 200610 200611 200612 200701 200702 200703 200704 200705 200707 200708 200709 200710 200711 200712 200801 200802 200803 200804 200805 200806 200807 200808 200809 200810 200811 200812 200901 200902 200903 200904 200905 200906 200907 200908 200909 200912 201001 201002 201003 201004 201007 201009 201011 201102
Subscribe to Posts [Atom]