Mercurial > repos > rmarenco > hubarchivecreator
comparison Bam.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 |
---|---|
13 from TrackDb import TrackDb | 13 from TrackDb import TrackDb |
14 from util import subtools | 14 from util import subtools |
15 | 15 |
16 | 16 |
17 class Bam( Datatype ): | 17 class Bam( Datatype ): |
18 def __init__( self, input_bam_false_path, data_bam , | 18 def __init__(self, input_bam_false_path, data_bam): |
19 inputFastaFile, extra_files_path, tool_directory ): | 19 super(Bam, self).__init__() |
20 super(Bam, self).__init__( input_fasta_file=inputFastaFile, | |
21 extra_files_path=extra_files_path, | |
22 tool_directory=tool_directory, | |
23 ) | |
24 | 20 |
25 self.track = None | 21 self.track = None |
26 | 22 |
27 self.input_bam_false_path = input_bam_false_path | 23 self.input_bam_false_path = input_bam_false_path |
28 | 24 |