https://github.com/epiqc/ScaffCC
Revision 69a4e5f33f23e533ba0bd05097ad590931c3194f authored by Yipeng Huang on 04 September 2018, 19:57:51 UTC, committed by Yipeng Huang on 04 September 2018, 19:57:51 UTC
1 parent e153ac1
Raw File
Tip revision: 69a4e5f33f23e533ba0bd05097ad590931c3194f authored by Yipeng Huang on 04 September 2018, 19:57:51 UTC
Simple script for removing the global phase in the QX Simulator output.
Tip revision: 69a4e5f
source_me
/bin/bash rkqc > /dev/null 2> /dev/null

if [ "$?" == "0" ]
then
  echo
  echo "It looks like \"rkqc\" is already in your \$PATH (possibly from a previous installation)."
  echo "Remove the old \"rkqc\" executable from your \$PATH, then source \"source_me\" one more time."
  echo
  echo
else
  export RKQC_PATH=$(pwd)/rkqc
  export PATH=$PATH:$RKQC_PATH
fi

back to top