How to add a postfix in incremental order to a printed string in Ruby?

191 Views Asked by At

For microarray data processing, I need to make a list of gene names from 1 to 654, like Gene_1 ... Gene_654.

My simple Ruby code produces the following:

1.upto(654).each { |i| print "Gene" } 

The result is:

GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene

GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene
..................................
GeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGeneGene=> 1
irb(main):008:0>

How do I add a "postfix _#" in sequential incremental order to a printed string and put them in a column, like:

Gene_1
Gene_2
::::::
Gene_654
3

There are 3 best solutions below

0
On
1.upto(654).each { |i| printf "%8s\t", "Gene_#{i}" }

Source: http://www.ruby-doc.org/core-2.0.0/Kernel.html#format-method

0
On

Edited to conform to the new requirements:

1.upto(654).each { |i| puts "Gene_#{i}" } 

--output:--
Gene_1 
Gene_2 
...
Geen_654
5
On

I'd use:

str = 'Gene_0'
654.times { puts str.next! }

Which outputs:

Gene_1
...
Gene_654

If you need the text output to the same width, perhaps because you're going to append information to each line, use some formatting:

str = 'Gene_0'
654.times { puts '%8s ' % str.next! }
# >>   Gene_1 
...
# >>   Gene_9 
# >>  Gene_10 
...
# >>  Gene_99 
# >> Gene_100 
...
# >> Gene_654 

If you need columns across a page:

str = 'Gene_0'
654.times { print '%8s ' % str.next! }
puts

Which spaces them out in 8-space-wide columns.

By default %8s uses right alignment, which isn't always what you want. Instead you can use %-8s for left-alignment.

You can build an array containing the column headings:

str = 'Gene_0'
columns = []
654.times { columns << '%-8s' % str.next! }
puts columns.join(' ')

You could even use something like inject:

str = 'Gene_0'
columns = []
(1..654).inject(columns) { |a, i| a.push('%-8s' % str.next!) }
puts columns.join(' ')

But that starts to add code that doesn't really help.


The OP asked:

...how to add " " to the result...

The output above doesn't make it easy to see the whitespace automatically appended to the output by '%8s ', so I tweaked the format-string to make it more obvious by wrapping the output in double-quotes:

str = 'Gene_0'
654.times { puts '"%8s "' % str.next! }

And here's the corresponding output, trimmed down to show how the format string maintains the column width as the string value increments:

# >> "  Gene_1 "
...
# >> "  Gene_9 "
# >> " Gene_10 "
...
# >> " Gene_99 "
# >> "Gene_100 "
...
# >> "Gene_654 "

If you want all the white-space to occur at the end of the column, use a left-alignment:

str = 'Gene_0'
654.times { puts '"%-8s "' % str.next! }

Which outputs:

# >> "Gene_1   "
...
# >> "Gene_9   "
# >> "Gene_10  "
...
# >> "Gene_99  "
# >> "Gene_100 "
...
# >> "Gene_654 "