Newer
Older
<link rel="stylesheet" type="text/css" href="https://raw.githack.com/Ganz1285/termynal/master/termynal.css" />
# BioInformatics Tool for Infrastructure Automation (BiTIA) CLI utility
This is the cli utility of the BiTIA project. The other component is
`bitia-runner`. Most users only need the cli client `bitia` to submit jobs.
## Configuration
TODO: Order of searching configuration file.
### Unix like systems
1. `./bitia.toml`
2. `~/.bitia.toml`
3. `$HOME/.config/bitia.toml`
3. `/etc/bitia.toml`
### Windows
1. `bitia.toml`
2. `%APPDATA%\bitia.toml`
3. `%PROGRAMDATA%\bitia.toml`
## BiTIA runner
If you are self-hosting the BiTIA server, you need `bitia-runner` as well. See
1. Using samtools to view a fastq file with same name as provided in url
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!--
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'London')">Ubuntu</button>
<button class="tablinks" onclick="openCity(event, 'Paris')">Arch</button>
<button class="tablinks" onclick="openCity(event, 'Tokyo')">BiTIA</button>
</div>
<div id="London" class="tabcontent">
<div id="termynal" data-termynal>
<span data-ty="input">sudo apt get install wget samtools</span>
<span data-ty="input">wget https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq</span>
<span data-ty="input">samtools convert 1_control_18S_2019_minq7%20-%20Copy.fastq</span>
</div>
</div>
<div id="Paris" class="tabcontent">
<div id="termynal1" data-termynal>
<span data-ty="input">pacman -S wget samtools</span>
<span data-ty="input">wget https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq</span>
<span data-ty="input">samtools convert 1_control_18S_2019_minq7%20-%20Copy.fastq</span>
</div>
</div>
<div id="Tokyo" class="tabcontent">
<div id="termynal2" data-termynal>
<span data-ty="input">bitia run "samtools convert <sample.fastq|https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq>"</span>
</div>
</div>
-->
<div class="tab">
<button class="tablinks" onmouseover="openCity(event, 'Ubuntu')">Ubuntu</button>
<button class="tablinks" onmouseover="openCity(event, 'Pacman')">Pacman</button>
<button class="tablinks" onmouseover="openCity(event, 'BiTIA')">BiTIA</button>
</div>
<div id="Ubuntu" style="display: block;" class="tabcontent">
<div id="termynal" data-termynal>
<span data-ty="input">sudo apt get install wget samtools</span>
<span data-ty="input">wget https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq</span>
<span data-ty="input">samtools convert 1_control_18S_2019_minq7%20-%20Copy.fastq</span>
</div>
</div>
<div id="Pacman" style="display: none;"class="tabcontent">
<div id="termynal1" data-termynal>
<span data-ty="input">pacman -S wget samtools</span>
<span data-ty="input">wget https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq</span>
<span data-ty="input">samtools convert 1_control_18S_2019_minq7%20-%20Copy.fastq</span>
</div>
</div>
<div id="BiTIA" style="display: none;" class="tabcontent">
<div id="termynal2" data-termynal>
<span data-ty="input">bitia run "samtools convert <https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq>"</span>
</div>
</div>
<div class="clearfix"></div>
2. Using samtools to view a fastq file with different file name as provided in url
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<div class="tab">
<button class="tablinks" onmouseover="openCity(event, 'UBUNTU')">Ubuntu</button>
<button class="tablinks" onmouseover="openCity(event, 'PACMAN')">Pacman</button>
<button class="tablinks" onmouseover="openCity(event, 'BITIA')">BiTIA</button>
</div>
<div id="UBUNTU" style="display: block;" class="tabcontent">
<div id="termynal3" data-termynal>
<span data-ty="input">sudo apt get install wget samtools</span>
<span data-ty="input">wget sample.fastq https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq</span>
<span data-ty="input">samtools convert sample.fastq</span>
</div>
</div>
<div id="PACMAN" style="display: none;"class="tabcontent">
<div id="termynal4" data-termynal>
<span data-ty="input">pacman -S wget samtools</span>
<span data-ty="input">wget sample.fastq https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq</span>
<span data-ty="input">samtools convert sample.fastq</span>
</div>
</div>
<div id="BITIA" style="display: none;" class="tabcontent">
<div id="termynal5" data-termynal>
<span data-ty="input">bitia run "samtools convert <sample.fastq|https://zenodo.org/record/3736457/files/1_control_18S_2019_minq7%20-%20Copy.fastq>"</span>
</div>
</div>
<div class="clearfix"></div>
<script type="text/javascript" src="https://raw.githack.com/Ganz1285/termynal/master/termynal.js" data-termynal-container="#termynal|#termynal1|#termynal2|#termynal3|#termynal4|#termynal5"></script>