I have a diagram in tikz-qtree like figure A, but I'd like something like figure B. Is it possibe, to alter the properties of only one brach? (these figures made with Dia and arrows not important)

edit: (added my modified code, based on Alan Munn's answer)
\begin{center}
\begin{tikzpicture}[grow'=right,level distance=1.45in,sibling distance=.2in]
\tikzset{edge from parent/.style=
{thick, draw, edge from parent fork right},
every tree node/.style=
{draw,minimum width=1.3in,text width=1.15in,align=center}
}
\Tree
[.parent
[.child0
grandchild0-0
grandchild0-1
[[.{grandchild0-2}
{greatgrandchild0}
{greatgrandchild0}
{greatgrandchild0}
{greatgrandchild0}
]]
grandchild0-3
]
[.child1
[.grandchild1-0 ]
[.grandchild1-1 ]
]
]
\end{tikzpicture}
\end{center}

