nextclade
Module to fetch Nextclade data.
get(id, dir='', version='')
Download specified Nextclade dataset into target directory.
Parameters:
-
id
(str
) –Name of the Nextclade dataset.
-
dir
(str
, default:''
) –Directory where dataset will be downloaded.
Returns:
-
None
–
Source code in src/vargram/data/nextclade.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
|
list(full=False)
List available Nextclade datasets.
Parameters:
-
full
(bool, default:False
, default:False
) –Determines if only names of datasets will be shown.
Returns:
-
None
–
Source code in src/vargram/data/nextclade.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
run_nextclade(command, write=False)
Run Nextclade CLI.
Parameters:
-
command
(list
) –Directory where test data will be downloaded.
-
write
(bool, default:False
, default:False
) –Determines whether to print output of command.
Returns:
-
None
–
Source code in src/vargram/data/nextclade.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|