You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download data files (ie BAM, GFF, VCF) to /your/directory/of/files/ and add the following to nginx.conf. This corresponds to the JbrowseResource endpoint defined in varify/samples/resources.py.
181
+
182
+
```bash
183
+
location /files/ {
184
+
alias /your/directory/of/files/;
185
+
internal;
186
+
}
187
+
```
188
+
189
+
Run the commands below to load reference sequences and Cosmic track (in that order). This only needs to be done once.
Note: Segment large Cosmic GFF files with synchronization marks, a line containing '###', to prevent (really) slow loading. Once a loading script executes, a data directory will exist in$project_root/jbrowse.
199
+
```
200
+
201
+
Run bgzip and tabix (via samtools/htslib) on VCF files
202
+
203
+
```bash
204
+
git clone git://github.com/samtools/samtools.git
205
+
bgzip my.vcf
206
+
tabix -p vcf my.vcf.gz
207
+
```
208
+
209
+
**Lastly, make sure data files are named correctly!** Currently, the batch, sample and run sections of the [sample] section of the sample manifest are concatenated and delimited by '_' to create the filename root for the BAM, BAI, VCF, and TBI files in the JBrowse URL. Suffixes are hard-coded '.sorted.mdup.bam','.sorted.mdup.bam.bai','.var_raw.vcf.gz', and '.var_raw.vcf.gz.tbi', respectively.
210
+
211
+
```bash
212
+
[sample]
213
+
project = U01
214
+
batch = Pseq_batch9
215
+
sample = P-Pseq_0019-P-A
216
+
version = 1
217
+
```
218
+
167
219
## Makefile Commands
168
220
169
221
-`build` - builds and initializes all submodules, compiles SCSS and optimizes JavaScript
0 commit comments