I have an array @genotypes = "TT AG TT AG...."
and want to add a spike to it (e.g. 20 x TT) to make a new array.
I can obviously push
"TT" into the array 20 times - but is there a simpler way of doing this? (ie. not @newarray = push @genotypes ("TT", "TT", "TT",......20 times!);