Skip to content
Snippets Groups Projects
Commit ab842367 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Add in names.

parent 1f7afc6a
Branches
No related merge requests found
......@@ -89,8 +89,11 @@ def tss_center(feature,assembly):
stop = chromsizes[feature.chrom][1]
feature.start = start
feature.stop = stop
feature.name = feature[3]
feature.score = '0'
feature.strand = '.'
return pybedtools.create_interval_from_list(
[feature.chrom, str(feature.start), str(feature.stop)])
[feature.chrom, str(feature.start), str(feature.stop), feature.name, feature.score, feature.strand ])
def main():
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment