"A"
"ACGT"
st = "ACGT"
length(st) # getting the length of a string
"" # empty string (epsilon)
length("")
"ACGT"[rand(1:4)] # generating a random nucleotide
"ACGT"[rand(1:4)] # repeated invocations might yield different nucleotides
"ACGT"[rand(1:4)] # repeated invocations might yield different nucleotides
"ACGT"[rand(1:4)] # repeated invocations might yield different nucleotides
"ACGT"[rand(1:4)] # repeated invocations might yield different nucleotides
# now I'll make a random nucleotide string by concatenating random nucleotides
st = join(["ACGT"[rand(1:4)] for _ in 1:40])
st[2:4] # substring from position 2 up to (not including) position 4
In Julia, the lowest offset is 1! Unlike C, Java, Python, Go. But like R.
Also, ranges like 2:4
are inclusive at both ends. 2:4
asks for the part of the string from offset 2 through offset 4.
st[1:3] # prefix of length 3
st[length(st)-2:length(st)] # suffix of length 3
st[end-2:end] # another way of getting the suffix of length 3
st1, st2 = "CAT", "ATAC"
st1
st2
st1 * st2 # concatenation of 2 strings