I have the following code:
\documentclass[12pt]{report}
\usepackage{chemfig}
%these for bonds in chemfig
\setdoublesep{0.35700 em} % 'Bond Spacing'
\setatomsep{1.78500 em} % 'Fixed Length'
\setbondoffset{0.18265 em} % 'Margin Width'
\newcommand{\bondwidth}{0.06642 em} % 'Line Width'
\setbondstyle{line width = \bondwidth}
%Drawing parentheses around polymers
\newcommand\setpolymerdelim[2]{\def\delimleft{#1}\def\delimright{#2}}
\def\makebraces(#1,#2)#3#4#5{%
\edef\delimhalfdim{\the\dimexpr(#1+#2)/2}%
\edef\delimvshift{\the\dimexpr(#1-#2)/2}%
\chemmove{
\node[at=(#4),yshift=(\delimvshift)]
{$
\left\delimleft
\vrule height\delimhalfdim depth\delimhalfdim width0pt
\right.
$};
\node[at=(#5),yshift=(\delimvshift)]
{$
\left.
\vrule height\delimhalfdim depth\delimhalfdim width0pt
\right\delimright_{\rlap{#3}}
$};
}%
}
%
%----------------------------end of preamble---------------------------------
%
\begin {document}
\setpolymerdelim() \chemfig{[:-30]*6((-C(-[:240]Cl
[@{op,.25}]
)(=[:120]O))=-=(-C(-[:300]OCH_2CH_2-O-[@{cl,.25}]H)(=[:60]O))-=-)} \makebraces(35pt,15pt){$\!\!{\rm n}$}{op}{cl}
\end {document}
Which gives me this image:

If anyone is familiar with parenthesis in chemfig, please run the code and see if you could answer for me? I would be much obliged!
Could I get some help tidying up the position of the left hand bracket and getting rid of the little box after the Cl?
Thanks for the responses but to clarify,, what I am trying to achieve is the following


