Mercurial > repos > iuc > jbrowse
annotate jbrowse.py @ 1:497c6bb3b717 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
| author | iuc | 
|---|---|
| date | Thu, 18 Jun 2015 12:10:51 -0400 | 
| parents | 2c9e5136b416 | 
| children | 7342f467507b | 
| rev | line source | 
|---|---|
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 1 #!/usr/bin/env python | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 2 from string import Template | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 3 import os | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 4 import argparse | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 5 import subprocess | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 6 import hashlib | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 7 import tempfile | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 8 import json | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 9 import yaml | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 10 import logging | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 11 logging.basicConfig() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 12 log = logging.getLogger(__name__) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 13 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 14 COLOR_FUNCTION_TEMPLATE = Template(""" | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 15 function(feature, variableName, glyphObject, track) { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 16 var score = ${score}; | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 17 ${opacity} | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 18 return 'rgba(${red}, ${green}, ${blue}, ' + opacity + ')'; | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 19 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 20 """) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 21 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 22 BLAST_OPACITY_MATH = """ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 23 var opacity = 0; | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 24 if(score == 0.0) { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 25 opacity = 1; | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 26 } else{ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 27 opacity = (20 - Math.log10(score)) / 180; | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 28 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 29 """ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 30 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 31 BREWER_COLOUR_IDX = 0 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 32 BREWER_COLOUR_SCHEMES = [ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 33 (228, 26, 28), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 34 (55, 126, 184), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 35 (77, 175, 74), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 36 (152, 78, 163), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 37 (255, 127, 0), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 38 ] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 39 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 40 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 41 # score comes from feature._parent.get('score') or feature.get('score') | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 42 # Opacity math | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 43 | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 44 TN_TABLE = { | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 45 'gff3': '--gff', | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 46 'gff': '--gff', | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 47 'bed': '--bed', | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 48 # 'genbank': '--gbk', | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 49 } | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 50 | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 51 INSTALLED_TO = os.path.dirname(os.path.realpath(__file__)) | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 52 | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 53 | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 54 class JbrowseConnector(object): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 55 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 56 def __init__(self, jbrowse, jbrowse_dir, outdir, genome): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 57 self.jbrowse = jbrowse | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 58 self.jbrowse_dir = jbrowse_dir | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 59 self.outdir = outdir | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 60 self.genome_path = genome | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 61 self.brewer_colour_idx = 0 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 62 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 63 self.clone_jbrowse(self.jbrowse, self.outdir) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 64 self.process_genome() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 65 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 66 def subprocess_check_call(self, command): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 67 log.debug('cd %s && %s', self.jbrowse_dir, ' '.join(command)) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 68 subprocess.check_call(command, cwd=self.jbrowse_dir) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 69 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 70 def _get_colours(self): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 71 r, g, b = BREWER_COLOUR_SCHEMES[self.brewer_colour_idx] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 72 self.brewer_colour_idx += 1 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 73 return r, g, b | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 74 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 75 def process_genome(self): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 76 self.subprocess_check_call(['perl', 'bin/prepare-refseqs.pl', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 77 '--fasta', self.genome_path]) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 78 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 79 def _add_json(self, json_data): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 80 if len(json_data.keys()) == 0: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 81 return | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 82 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 83 tmp = tempfile.NamedTemporaryFile(delete=False) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 84 tmp.write(json.dumps(json_data)) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 85 tmp.close() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 86 cmd = ['perl', 'bin/add-track-json.pl', tmp.name, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 87 os.path.join('data', 'trackList.json')] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 88 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 89 os.unlink(tmp.name) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 90 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 91 def add_blastxml(self, data, key, **kwargs): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 92 gff3_unrebased = tempfile.NamedTemporaryFile(delete=False) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 93 cmd = ['python', os.path.join(INSTALLED_TO, 'blastxml_to_gapped_gff3.py'), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 94 '--trim_end', '--min_gap', str(kwargs['min_gap']), data] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 95 subprocess.check_call(cmd, cwd=self.jbrowse_dir, stdout=gff3_unrebased) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 96 gff3_unrebased.close() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 97 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 98 gff3_rebased = tempfile.NamedTemporaryFile(delete=False) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 99 cmd = ['python', os.path.join(INSTALLED_TO, 'gff3_rebase.py')] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 100 if kwargs['protein']: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 101 cmd.append('--protein2dna') | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 102 cmd.extend([kwargs['parent'], gff3_unrebased.name]) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 103 subprocess.check_call(cmd, cwd=self.jbrowse_dir, stdout=gff3_rebased) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 104 gff3_rebased.close() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 105 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 106 label = hashlib.md5(data).hexdigest() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 107 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 108 red, green, blue = self._get_colours() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 109 color_function = COLOR_FUNCTION_TEMPLATE.substitute({ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 110 'score': "feature._parent.get('score')", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 111 'opacity': BLAST_OPACITY_MATH, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 112 'red': red, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 113 'green': green, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 114 'blue': blue, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 115 }) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 116 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 117 clientConfig = { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 118 'label': 'description', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 119 'color': color_function.replace('\n', ''), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 120 'description': 'Hit_titles', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 121 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 122 config = {'glyph': 'JBrowse/View/FeatureGlyph/Segments'} | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 123 if 'category' in kwargs: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 124 config['category'] = kwargs['category'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 125 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 126 cmd = ['perl', 'bin/flatfile-to-json.pl', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 127 '--gff', gff3_rebased.name, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 128 '--trackLabel', label, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 129 '--key', key, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 130 '--clientConfig', json.dumps(clientConfig), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 131 '--config', json.dumps(config), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 132 '--trackType', 'JBrowse/View/Track/CanvasFeatures' | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 133 ] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 134 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 135 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 136 os.unlink(gff3_rebased.name) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 137 os.unlink(gff3_unrebased.name) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 138 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 139 def _min_max_gff(self, gff_file): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 140 min_val = None | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 141 max_val = None | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 142 with open(gff_file, 'r') as handle: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 143 for line in handle: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 144 try: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 145 value = float(line.split('\t')[5]) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 146 min_val = min(value, (min_val or value)) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 147 max_val = max(value, (max_val or value)) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 148 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 149 if value < min_val: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 150 min_val = value | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 151 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 152 if value > max_val: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 153 max_val = value | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 154 except Exception: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 155 pass | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 156 return min_val, max_val | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 157 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 158 def add_bigwig(self, data, key, **kwargs): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 159 label = hashlib.md5(data).hexdigest() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 160 dest = os.path.join('data', 'raw', os.path.basename(data)) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 161 cmd = ['ln', '-s', data, dest] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 162 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 163 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 164 track_data = { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 165 "label": label, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 166 "urlTemplate": os.path.join('..', dest), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 167 "bicolor_pivot": "zero", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 168 "storeClass": "JBrowse/Store/SeqFeature/BigWig", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 169 "type": "JBrowse/View/Track/Wiggle/Density", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 170 "key": key, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 171 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 172 track_data.update(kwargs) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 173 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 174 if 'min' not in track_data and 'max' not in track_data \ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 175 and 'autoscale' not in track_data: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 176 track_data['autoscale'] = 'local' | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 177 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 178 self._add_json(track_data) | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 179 | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 180 def add_bam(self, data, key, **kwargs): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 181 label = hashlib.md5(data).hexdigest() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 182 dest = os.path.join('data', 'raw', os.path.basename(data)) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 183 # ln? | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 184 cmd = ['ln', '-s', data, dest] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 185 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 186 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 187 bai_source = kwargs['bam_index'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 188 cmd = ['ln', '-s', bai_source, dest + '.bai'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 189 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 190 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 191 track_data = { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 192 "urlTemplate": os.path.join('..', dest), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 193 "key": key, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 194 "label": label, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 195 "type": "JBrowse/View/Track/Alignments2", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 196 "storeClass": "JBrowse/Store/SeqFeature/BAM", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 197 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 198 if 'category' in kwargs: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 199 track_data['category'] = kwargs['category'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 200 self._add_json(track_data) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 201 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 202 if kwargs.get('auto_snp', False): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 203 track_data = { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 204 "storeClass": "JBrowse/Store/SeqFeature/BAM", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 205 "urlTemplate": os.path.join('..', dest), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 206 "type": "JBrowse/View/Track/SNPCoverage", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 207 "key": key + " - SNPs/Coverage", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 208 "label": label + "_autosnp", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 209 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 210 if 'category' in kwargs: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 211 track_data['category'] = kwargs['category'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 212 self._add_json(track_data) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 213 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 214 def add_vcf(self, data, key, **kwargs): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 215 label = hashlib.md5(data).hexdigest() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 216 dest = os.path.join('data', 'raw', os.path.basename(data)) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 217 # ln? | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 218 cmd = ['ln', '-s', data, dest] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 219 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 220 cmd = ['bgzip', dest] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 221 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 222 cmd = ['tabix', '-p', 'vcf', dest + '.gz'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 223 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 224 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 225 track_data = { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 226 "key": key, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 227 "label": label, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 228 "urlTemplate": os.path.join('..', dest + '.gz'), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 229 "type": "JBrowse/View/Track/HTMLVariants", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 230 "storeClass": "JBrowse/Store/SeqFeature/VCFTabix", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 231 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 232 track_data.update(kwargs) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 233 self._add_json(track_data) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 234 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 235 def add_features(self, data, key, format, **kwargs): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 236 label = hashlib.md5(data).hexdigest() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 237 cmd = ['perl', 'bin/flatfile-to-json.pl', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 238 TN_TABLE.get(format, 'gff'), data, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 239 '--trackLabel', label, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 240 '--key', key] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 241 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 242 config = {} | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 243 if 'category' in kwargs: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 244 config['category'] = kwargs['category'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 245 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 246 if kwargs.get('match', False): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 247 clientConfig = { | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 248 'label': 'description', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 249 'description': 'Hit_titles', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 250 } | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 251 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 252 # Get min/max and build a scoring function since JBrowse doesn't | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 253 min_val, max_val = self._min_max_gff(data) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 254 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 255 if min_val is not None and max_val is not None: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 256 MIN_MAX_OPACITY_MATH = Template(""" | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 257 var opacity = (score - ${min}) * (1/(${max} - ${min})); | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 258 """).substitute({ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 259 'max': max_val, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 260 'min': min_val, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 261 }) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 262 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 263 red, green, blue = self._get_colours() | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 264 color_function = COLOR_FUNCTION_TEMPLATE.substitute({ | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 265 'score': "feature.get('score')", | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 266 'opacity': MIN_MAX_OPACITY_MATH, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 267 'red': red, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 268 'green': green, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 269 'blue': blue, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 270 }) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 271 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 272 clientConfig['color'] = color_function.replace('\n', '') | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 273 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 274 config['glyph'] = 'JBrowse/View/FeatureGlyph/Segments' | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 275 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 276 cmd += ['--clientConfig', json.dumps(clientConfig), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 277 '--trackType', 'JBrowse/View/Track/CanvasFeatures' | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 278 ] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 279 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 280 cmd.extend(['--config', json.dumps(config)]) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 281 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 282 self.subprocess_check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 283 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 284 def process_annotations(self, data, key, format, **kwargs): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 285 if format in ('gff', 'gff3', 'bed'): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 286 self.add_features(data, key, format, **kwargs) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 287 elif format == 'bigwig': | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 288 self.add_bigwig(data, key, **kwargs) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 289 elif format == 'bam': | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 290 self.add_bam(data, key, **kwargs) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 291 elif format == 'blastxml': | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 292 self.add_blastxml(data, key, **kwargs) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 293 elif format == 'vcf': | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 294 self.add_vcf(data, key, **kwargs) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 295 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 296 def clone_jbrowse(self, jbrowse_dir, destination): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 297 # JBrowse seems to have included some bad symlinks, cp ignores bad symlinks | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 298 # unlike copytree | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 299 cmd = ['mkdir', '-p', destination] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 300 subprocess.check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 301 cmd = ['cp', '-r', jbrowse_dir, destination] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 302 subprocess.check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 303 cmd = ['mkdir', '-p', os.path.join(destination, 'JBrowse-1.11.6', | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 304 'data', 'raw')] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 305 subprocess.check_call(cmd) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 306 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 307 # http://unix.stackexchange.com/a/38691/22785 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 308 # JBrowse releases come with some broken symlinks | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 309 cmd = ['find', destination, '-type', 'l', '-xtype', 'l', '-exec', 'rm', "'{}'", '+'] | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 310 subprocess.check_call(cmd) | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 311 | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 312 | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 313 if __name__ == '__main__': | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 314 parser = argparse.ArgumentParser(description="", epilog="") | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 315 parser.add_argument('genome', type=file, help='Input genome file') | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 316 parser.add_argument('yaml', type=file, help='Track Configuration') | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 317 | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 318 parser.add_argument('--jbrowse', help='Folder containing a jbrowse release') | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 319 parser.add_argument('--outdir', help='Output directory', default='out') | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 320 args = parser.parse_args() | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 321 | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 322 jc = JbrowseConnector( | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 323 jbrowse=args.jbrowse, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 324 jbrowse_dir=os.path.join(args.outdir, 'JBrowse-1.11.6'), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 325 outdir=args.outdir, | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 326 genome=os.path.realpath(args.genome.name), | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 327 ) | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 328 | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 329 track_data = yaml.load(args.yaml) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 330 for track in track_data: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 331 path = os.path.realpath(track['file']) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 332 extra = track.get('options', {}) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 333 if '__unused__' in extra: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 334 del extra['__unused__'] | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 335 | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 336 for possible_partial_path in ('bam_index', 'parent'): | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 337 if possible_partial_path in extra: | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 338 extra[possible_partial_path] = os.path.realpath( | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 339 extra[possible_partial_path]) | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 340 extra['category'] = track.get('category', 'Default') | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 341 | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 342 jc.process_annotations(path, track['label'], track['ext'], **extra) | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 343 | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 344 print """ | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 345 <html> | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 346 <body> | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 347 <script type="text/javascript"> | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 348 window.location=JBrowse-1.11.6/index.html | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 349 </script> | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 350 <a href="JBrowse-1.11.6/index.html">Go to JBrowse</a> | 
| 1 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 351 <p>Please note that JBrowse functions best on production Galaxy | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 352 instances. The paste server used in development instances has issues | 
| 
497c6bb3b717
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0887009a23d176b21536c9fd8a18c4fecc417d4f
 iuc parents: 
0diff
changeset | 353 serving the volumes of data regularly involved in JBrowse</p> | 
| 0 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 354 </body> | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 355 </html> | 
| 
2c9e5136b416
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 685773d3da40afdc4d14846d4935b3b0a100f56e
 iuc parents: diff
changeset | 356 """ | 
