You can remove meta tags by setting its contents to an empty string through the JDocument class.
For instance:
$doc =& JFactory::getDocument();
$doc->setMetaData('description', '');
This will remove the tag <meta name="description" ... >.
index.php , setMetaData $this:
$this->setMetaData('description', '');
, Joomla! API ( JDocument, setMetaData): http://doc.joomladev.eu/api25/