Hello I need to do an awk if command using 4 different conditions together, example of my input only for a few lines (I have an input with thousands of lines)
chr17_30 1
chr1_72 0
chr1_46 2
chr1_47 -1
chr1_48 1
Output desirable
chr17_30 1 AB
chr1_72 0 AA
chr1_46 2 BB
chr1_47 -1 NN
chr1_48 1 AB
How do I do this? Only be able to do for a condition using awk if. It might be another command as well.
Thank you Clarissa