If you do this could you consider making this either a global or even better a
per field option?  FlyBase has several fields that can contain pipe characters
so breaking them up by default would corrupt data.

Cheers,
Josh

Richard Holland wrote:
> Hi Robert.
> 
> We are considering putting this function back in for 0.6.
> 
> In the meantime you can work around it by modifying the HTML formatter
> code in your local copy.
> 
> Line 131 of biomart-perl/lib/Formatter/HTML.pm looks like this:
> 
> push @{$new_row},$$row[$$attribute_positions[$i]];
> 
> Before the above statement, you should insert a new line of code:
> 
> $$row[$$attribute_positions[$i]] =~ s/\|/\<br\/\>/g;
> 
> This will change all | symbols into newlines in all results for all
> attributes when the HTML formatter is used.
> 
> cheers,
> Richard

Reply via email to