Any idea why yshift doesn't work in the following TikZ example?
\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0,0);
\coordinate (B) at (2.5,0);
\draw (A) -- (B);
\draw[yshift=2cm] (A) -- (B);
\end{tikzpicture}
\end{document}
