-
Notifications
You must be signed in to change notification settings - Fork 1
/
.info.json
86 lines (86 loc) · 2.91 KB
/
.info.json
1
2
3
4
5
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
81
82
83
84
85
86
{
"ymir": {
"title": "Ymir - a tool for working with probabilistic models of immune receptor assembling",
"values": {
"version": "2.0-pre1",
"release date": "??-??-2016"
}
},
"algos": {
"title": "Algorithms and their parameters for the statistical inference in Ymir (values for a parameter '-a' for inference.py)",
"values": {
"EM": {
"alias": "em",
"comment": "Classic EM algorithm for the statistical inference of a model's parameters from (Murugan et al., 2012)",
"parameters": {
"niter": {
"alias": "--niter",
"comment": "maximum number of iterations to perform (default = 20)"
}
}
}
}
},
"formats": {
"title": "Possible input formats for Ymir (values for a parameter '-f' for compute.py and inference.py)",
"values": {
"ymir": {
"alias": "ymir",
"comment": "default format of Ymir datasets",
"pyclass": "YmirConverter"
},
"tcr": {
"alias": "tcr",
"comment": "format of data frames from an R package tcR saved with the tcR::repSave() function",
"pyclass": "tcRConverter"
},
"mitcr": {
"alias": "mitcr",
"comment": "format for cloneset files outputted by MiTCR",
"pyclass": "MiTCRConverter"
},
"migec": {
"alias": "migec",
"comment": "format for cloneset files outputted by MiGEC",
"pyclass": "MiGECConverter"
},
"vdjtools": {
"alias": "vdjtools",
"comment": "format for cloneset files outputted by VDJtools",
"pyclass": "VDJtoolsConverter"
}
}
},
"models": {
"title": "Available generation models in the current Ymir distribution (values for a parameter '-m' for scripts)",
"values": {
"hTRA": {
"comment": "human TCR alpha-chain",
"alias": "htra",
"path": "./models/hTRA"
},
"hTRB": {
"comment": "human TCR beta-chain",
"alias": "htrb",
"path": "./models/hTRB"
}
}
},
"scripts": {
"title": "Available ready-to-run scripts",
"values": {
"compute": {
"alias": "compute.py",
"comment": "A Python 3 script to compute generation probabilities of immune receptors. Run: '$python3 compute.py <parameters>'. To get help: 'run $python3 compute.py -h' to get help"
},
"inference": {
"alias": "inference.py",
"comment": "A Python 3 script to perform the statistical inference of marginal probabilities of a generation model. To get help: run '$python3 inference.py <parameters>'. Run '$python3 inference.py -h' to get help"
},
"generate": {
"alias": "generate.py",
"comment": "A Python 3 script for generation a pre-selection repertoire of immunce receptors. Run: '$python3 generate.py <parameters>'. To get help: run '$python3 generate.py -h' to get help"
}
}
}
}