I am trying to use the write.table() function in R to write an output. It has 3 columns, first has numbers, the second has a color indicator (#000000) and the third one has a number again. Simple enough right?
Well, when I run my script step by step, the output is the desired one, something like this:
Tip ID Color Track Cluster ID
13298267 #FF0000 1
But when I try to do it through command line, with exactly the same number and the same arguments, I get something like this:
13298267 #FF0000 156
I tried changing the encoding and nothing happened, I tried changing the third column as a number instead of an integer. Nothing
Does someone have any idea of what might be happening?