Skip to content

Commit

Permalink
add border_color and line
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening committed Mar 31, 2017
1 parent 3fbc199 commit 9e2d296
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions galaxy/wrapper/hicPlotTADs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#if $x_axis.fontsize:
fontsize = $x_axis.fontsize
#end if
#if $x_axis.where:
#if $x_axis.where:
where = $x_axis.where
#end if
#else:
Expand All @@ -58,6 +58,10 @@ colormap = $track.colormap
color = $track.color
#end if

#if $track.border_color:
color = $track.border_color
#end if

#if $track.depth:
depth = $track.depth
#end if
Expand All @@ -66,8 +70,6 @@ depth = $track.depth
display = $track.display
#end if

##color = black

#if $track.width
width = $track.width
#end if
Expand Down Expand Up @@ -170,6 +172,7 @@ width = $track.spacer_width
<param name="title" type="text" optional="true" label="Plot title"/>
<expand macro="colormap" />
<param name="color" type="color" value="#000000" label="Track color" optional="True" />
<param name="border_color" type="color" value="#000000" label="Border color" optional="True" />
<param name="min_value" type="float" value="" optional="True" label="Minimum value"/>
<param name="max_value" type="float" value="" optional="True" label="Maximum value"/>

Expand Down Expand Up @@ -209,6 +212,7 @@ width = $track.spacer_width

<param name="type" type="select" optional="True" label="Plotting type">
<option value="lines">Lines</option>
<option value="line">Line</option>
<option value="vlines">vertical dotted lines from the top to the bottom</option>
<option value="arcplot">arcplot</option>
<option value="interaction">interaction</option>
Expand Down

0 comments on commit 9e2d296

Please sign in to comment.