Hei guys, im almost sure there is some very easy solution for this, but i easily dont know anymore what/where to search.
What I want to do can be seen below in the image the red line (with or without an arrowhead, not that important).
Do you guys have any idea how to do this? I started trying with \coordinate and invisible nodes, but failed hard.
Codeexample of this code:
\newlength{\spalte}
\setlength{\spalte}{7cm}
\newlength{\double}
\setlength{\double}{0.7cm}
\node (init) [progline] {Download};
\node (preproc) [process, below of = init] {Preprocessing};
\node (shrink) [process, right of=preproc, yshift=\double, node distance=\spalte] {Preprocessing};
\node (clean) [process, right of = preproc, yshift=-\double, node distance=\spalte] {Preprocessing};
% Draw edges
\draw [arrow] (init) -- (preproc);
\draw [arrow] (preproc) -| (shrink);
\draw [arrow] (preproc) -- (clean);
Edit:
If someone comes to this point, my final solution now (including arrowheads also) follows:

\usepackage{tikz} %Flowchart
\usetikzlibrary{shapes,arrows, positioning} %Flowchart
% Define block styles
\tikzstyle{treenode} = [shape=rectangle, rounded corners,
draw, anchor=center,
text width=5cm, align=center,
top color=white, bottom color=blue!20,
inner sep=1ex]
\tikzstyle{progline} = [treenode, font=\Large, bottom color=red!30]
\tikzstyle{process} = [treenode, font=\ttfamily\normalsize]
\tikzstyle{invisible} = [inner sep=0,minimum size=0]
\tikzstyle{arrow} = [thick,->,>=stealth] %Arrow shape
\tikzstyle{arrow_right} = [thick,<-,>=stealth] %Arrow shape
\pgfmathsetlengthmacro{\double}{0.7cm}
\begin{tikzpicture}[node distance = 1cm, auto]
% Place nodes
\node (init) [progline] {Download};
\node (preproc) [process, below=of init] {Preprocessing};
\node (shrink) [process, right=of preproc, yshift=\double] {shrinking};
\node (clean) [process, right=of preproc, yshift=-\double] {cleaning};
% Draw edges
\draw [arrow] (init) -- (preproc);
\draw [arrow] (preproc) -| (shrink);
\draw [arrow] (preproc) -- (clean);
\draw [arrow_right] (shrink.west) -- ++(-0.5,0) -- (preproc.east);
\end{tikzpicture}
