// The secondary structures are specified in the following format.
// @helix(beginResidueNumber, endResidueNumber, userDefinedNumericId)
// @strand(beginResidueNumber, endResidueNumber, userDefinedNumericId)
// The helix and strand are from the beginResidueNumber to the endResidueNumber,
// both end residues inclusive.
@helix(23,  33, 1)
@strand(2,   7, 2)
@strand(12, 17, 3)
@strand(65, 70, 4)
@strand(41, 45, 5)
@strand(48, 50, 6)

// The SSE to be used to compute the alignment tensor is specified using the
// following tag.
@computeAlignmentTensorUsing(@helix(23, 33, 1))

// Sheets by adjacency
@sheet( (2, 4, parallel) (2, 3, antiparallel) (4, 5, antiparallel) (5, 6, antiparallel))




