Removing specific sequences from file

My file looks like this

But I need to remove the entry with the identifier >Reference1 along with the entire sequence. Thus, I will end up having the following file

Thanks in advance!

awk '/>Reference1/{getline;next}1' file
1 Like

Thanks!