Mercurial > repos > iuc > data_manager_selection_background
annotate data_manager/data_manager_selection_background.py @ 0:bb5794942b5e draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
author | iuc |
---|---|
date | Fri, 20 Aug 2021 21:03:25 +0000 |
parents | |
children | 0bd1cd5eac51 |
rev | line source |
---|---|
0
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
1 # -*- coding: utf-8 -*- |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
2 import argparse |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
3 import bz2 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
4 import gzip |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
5 import json |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
6 import os |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
7 import shutil |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
8 import sys |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
9 import uuid |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
10 import zipfile |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
11 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
12 from six.moves.urllib.request import urlretrieve |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
13 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
14 # Nice solution to opening compressed files (zip/bz2/gz) transparently |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
15 # https://stackoverflow.com/a/13045892/638445 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
16 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
17 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
18 class CompressedFile(object): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
19 magic = None |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
20 file_type = None |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
21 mime_type = None |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
22 proper_extension = None |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
23 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
24 def __init__(self, f): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
25 # f is an open file or file like object |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
26 self.f = f |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
27 self.accessor = self.open() |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
28 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
29 @classmethod |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
30 def is_magic(self, data): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
31 return data.startswith(self.magic) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
32 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
33 def open(self): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
34 return None |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
35 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
36 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
37 class ZIPFile(CompressedFile): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
38 magic = '\x50\x4b\x03\x04' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
39 file_type = 'zip' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
40 mime_type = 'compressed/zip' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
41 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
42 def open(self): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
43 return zipfile.ZipFile(self.f) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
44 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
45 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
46 class BZ2File(CompressedFile): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
47 magic = '\x42\x5a\x68' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
48 file_type = 'bz2' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
49 mime_type = 'compressed/bz2' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
50 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
51 def open(self): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
52 return bz2.BZ2File(self.f) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
53 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
54 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
55 class GZFile(CompressedFile): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
56 magic = '\x1f\x8b\x08' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
57 file_type = 'gz' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
58 mime_type = 'compressed/gz' |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
59 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
60 def open(self): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
61 return gzip.GzipFile(self.f) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
62 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
63 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
64 # factory function to create a suitable instance for accessing files |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
65 def get_compressed_file(filename): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
66 with open(filename, 'rb') as f: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
67 start_of_file = f.read(1024) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
68 f.seek(0) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
69 for cls in (ZIPFile, BZ2File, GZFile): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
70 if cls.is_magic(start_of_file): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
71 f.close() |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
72 return cls(filename) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
73 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
74 return None |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
75 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
76 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
77 def url_download(url): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
78 """Attempt to download gene annotation file from a given url |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
79 :param url: full url to gene annotation file |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
80 :type url: str. |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
81 :returns: name of downloaded gene annotation file |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
82 :raises: ContentDecodingError, IOError |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
83 """ |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
84 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
85 # Generate file_name |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
86 file_name = url.split('/')[-1] |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
87 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
88 try: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
89 # download URL (FTP and HTTP work, probably local and data too) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
90 urlretrieve(url, file_name) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
91 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
92 # uncompress file if needed |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
93 cf = get_compressed_file(file_name) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
94 if cf is not None: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
95 uncompressed_file_name = os.path.splitext(file_name)[0] |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
96 with open(uncompressed_file_name, 'w+') as uncompressed_file: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
97 shutil.copyfileobj(cf.accessor, uncompressed_file) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
98 os.remove(file_name) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
99 file_name = uncompressed_file_name |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
100 except IOError as e: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
101 sys.stderr.write('Error occured downloading reference file: %s' % e) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
102 os.remove(file_name) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
103 return file_name |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
104 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
105 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
106 def main(): |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
107 parser = argparse.ArgumentParser(description='Create data manager JSON.') |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
108 parser.add_argument('--output', dest='output', action='store', required=True, help='JSON filename') |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
109 parser.add_argument('--dbkey', dest='dbkey', action='store', default=uuid.uuid4(), help='Data table entry unique ID') |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
110 parser.add_argument('--label', dest='label', action='store', required=True, help='Label to display') |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
111 parser.add_argument('--uri', dest='uri', action='store', help='URI for the sequences') |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
112 parser.add_argument('--dataset', dest='dataset', action='store', help='Path for the sequences') |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
113 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
114 args = parser.parse_args() |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
115 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
116 work_dir = os.getcwd() |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
117 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
118 if args.uri is not None: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
119 background_fasta = url_download(args.uri) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
120 else: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
121 background_fasta = args.dataset |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
122 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
123 table_entry = '%s.fa' % args.dbkey |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
124 shutil.copy(background_fasta, os.path.join(work_dir, table_entry)) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
125 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
126 # Update Data Manager JSON and write to file |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
127 data_manager_entry = { |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
128 'data_tables': { |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
129 'bealign_selection': {'value': args.dbkey, 'label': args.label, 'path': table_entry} |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
130 } |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
131 } |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
132 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
133 with open(os.path.join(args.output), 'w+') as fh: |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
134 json.dump(data_manager_entry, fh, sort_keys=True) |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
135 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
136 |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
137 if __name__ == '__main__': |
bb5794942b5e
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_selection_background commit af3bfbbd3f1236bf96a25bcb8483f2889295ec0c"
iuc
parents:
diff
changeset
|
138 main() |