I am rather new to bioinformatics (this is my first post!) and I would appreciate some help on task that has me stuck.
I have a Tab-delimited data table with three columns:
AATTCTTGCA 4 [A/T] AATTCCTTCG 7 [C/T] AATTCAACAA 2 [T/C] I would like to replace the character in the first column at the position indicated by the second column with the string in the third column so that the output is:
AAT[A/T]CTTGCA AATTCC[C/T]TCG A[T/C]TTCAACAA I am working through various tutorials now and will update my post when I have some (failed) commands with sed/awk.
Thanks in advance!