0

I have a pandas dataframe x :

sequence score
AAtttGG   2
CCCgttT   3

I want the output

sequence score
AATTTGG   2
CCCGTTT   3

so that all sequences are uppercase. I would appreciate a oneliner that will do this.

1 Answer 1

1

Call the vectorised str method upper:

In [98]:

df.sequence = df.sequence.str.upper()
df
Out[98]:
  sequence  score
0  AATTTGG      2
1  CCCGTTT      3
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.