#!/bin/bash

# This script does the same job as the copy script in /data/CASP11/tmp_TC

targ=$1

if [ ! -e "$targ.pdb.txt" ]; 
   then
	echo "File $targ.pdb.txt does not exist."
	echo "===========";
	echo "The script copies tarball for Tp or Tc targets "
	echo "from /data/CASP11/tmp_TC to /www/download_area/CASP11/extra_experiments/";
	echo ""
	echo "USAGE: $0 <TARGET>";
	echo "<TARGET> name of Tp target"
	echo "============"
	echo ""
	exit 0;
fi

cp /data/CASP12/tmp_TC/$targ.tar.gz /www/download_area/CASP12/extra_experiments/
