Source code for bioblend.galaxy.ftpfiles

"""
Contains possible interactions with the Galaxy FTP Files
"""
from bioblend.galaxy.client import Client


[docs]class FTPFilesClient(Client): def __init__(self, galaxy_instance): self.module = 'ftp_files' super(FTPFilesClient, self).__init__(galaxy_instance)
[docs] def get_ftp_files(self, deleted=False): """ Get a list of local files :rtype: list :return: A list of dicts with details on individual files on ftp. """ return Client._get(self)