diff --git a/integration-tests/templates/data-yeastx/copy-clean-incoming.sh b/integration-tests/templates/data-yeastx/copy-clean-incoming.sh new file mode 100755 index 0000000000000000000000000000000000000000..fef726d96d9e2b53da8e7614e4eedff30e8113ee --- /dev/null +++ b/integration-tests/templates/data-yeastx/copy-clean-incoming.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# Tomasz Pylak, CISD +# This script copies the set of test datasets to the new folder, skipping the .svn directories +# Can be used to test YeastX workflow manually. + +rm -fr incoming-clean +mkdir incoming-clean +cp -R incoming incoming-clean +find incoming-clean -name .svn -exec rm -fr {} \;