protected function TripalImporter::addItemsHandled

3.x TripalImporter.inc protected TripalImporter::addItemsHandled($num_handled)

Adds to the count of the total number of items that have been handled.

Parameters

$num_handled:

4 calls to TripalImporter::addItemsHandled()
GFF3Importer::loadFasta in tripal_chado/includes/TripalImporter/GFF3Importer.inc
Load the FASTA sequences at the bottom of a GFF3 file
GFF3Importer::loadGFF3 in tripal_chado/includes/TripalImporter/GFF3Importer.inc
Actually load a GFF3 file. This is the function called by tripal jobs
TaxonomyImporter::run in tripal_chado/includes/TripalImporter/TaxonomyImporter.inc
Performs the import.
TaxonomyImporter::updateExisting in tripal_chado/includes/TripalImporter/TaxonomyImporter.inc
Imports details from NCBI Taxonomy for organisms that alrady exist.

File

tripal/includes/TripalImporter.inc, line 583

Class

TripalImporter

Code

protected function addItemsHandled($num_handled) {
  $items_handled = $this->num_handled = $this->num_handled + $num_handled;
  $this->setItemsHandled($items_handled);
}