Mercurial > repos > rmarenco > hubarchivecreator
comparison BigWig.py @ 10:acc233161f50 draft
planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 1b1063f90004764bcf504f4340738eca5c4b1f9d
author | rmarenco |
---|---|
date | Thu, 21 Jul 2016 05:58:51 -0400 |
parents | fb5e60d4d18a |
children | d05236b15f81 |
comparison
equal
deleted
inserted
replaced
9:4f9847539a28 | 10:acc233161f50 |
---|---|
8 from Track import Track | 8 from Track import Track |
9 from TrackDb import TrackDb | 9 from TrackDb import TrackDb |
10 | 10 |
11 | 11 |
12 class BigWig( Datatype ): | 12 class BigWig( Datatype ): |
13 def __init__(self, input_bigwig_path, data_bigwig, | 13 def __init__(self, input_bigwig_path, data_bigwig): |
14 input_fasta_path, extra_files_path, tool_directory): | 14 super(BigWig, self).__init__() |
15 super(BigWig, self).__init__( | |
16 input_fasta_path, extra_files_path, tool_directory | |
17 ) | |
18 | 15 |
19 self.track = None | 16 self.track = None |
20 | 17 |
21 self.input_bigwig_path = input_bigwig_path | 18 self.input_bigwig_path = input_bigwig_path |
22 self.name_bigwig = data_bigwig["name"] | 19 self.name_bigwig = data_bigwig["name"] |