TripalGFF3Downloader.inc

File

tripal/includes/TripalFieldDownloaders/TripalGFF3Downloader.inc
View source
  1. <?php
  2. class TripalGFF3Downloader extends TripalFieldDownloader {
  3. /**
  4. * Sets the label shown to the user describing this formatter.
  5. */
  6. static public $label = 'GFF3';
  7. /**
  8. * Indicates the default extension for the outputfile.
  9. */
  10. static public $default_extension = 'gff3';
  11. /**
  12. * @see TripalFieldDownloader::format()
  13. */
  14. protected function formatEntity($entity) {
  15. }
  16. /**
  17. * @see TripalFieldDownloader::getHeader()
  18. */
  19. protected function getHeader() {
  20. }
  21. }