Hi Ashley,
Welcome to the MDAnalysis mailing list!
I am going to assume that Sic1 is the protein you are working on in your research.
Perhaps I can help you out a bit more if you share the script you have written to analyse your dihedral angles and also the output that you would expect.
This snippet of code from the tutorial may help you identify if a residue has a non-standard name:
for res in u.residues:
phi = res.phi_selection()
if phi is None:
names = None
else:
names = phi.names
print('{}: {} '.format(res.resname, names))
This will spit out each residue name and the selection used to define the phi angle allowing you to pinpoint residues with non-standard names etc.
Let me know how you go.
Cheers
Hugo