Hello, I am new in Julia and it's the first time I publish here, but I actually would find it useful to modify a string. For example, I want to do:
string = "ACTGACTG" string[3] = A --> (error) And I cannot use replace because I don't wanna change all the T, I just wanna change the third character in the string. For me, it is useful that they are trings because then "after a mutation" I can easily check if two strings are the same, e.g: How could I do that, then? Thanks
