comparison env/lib/python3.9/site-packages/bioblend/galaxy/ftpfiles/__init__.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 """
2 Contains possible interactions with the Galaxy FTP Files
3 """
4 from bioblend.galaxy.client import Client
5
6
7 class FTPFilesClient(Client):
8
9 def __init__(self, galaxy_instance):
10 self.module = 'ftp_files'
11 super().__init__(galaxy_instance)
12
13 def get_ftp_files(self, deleted=False):
14 """
15 Get a list of local files.
16
17 :type deleted: bool
18 :param deleted: Whether to include deleted files
19
20 :rtype: list
21 :return: A list of dicts with details on individual files on FTP
22 """
23 return self._get()