Using the docker implementation, I have successfully run the test example. However, when I get to step 1.B and run:
WORKING_DIR=local/directory/where/MakeDefaultDirectory/was/run/
DOCKER_CONFIG_FILE=/phg/config.txt
docker run --name create_initial_db --rm \
-v ${WORKING_DIR}/:/phg/ \
-t maizegenetics/phg:latest \
/tassel-5-standalone/run_pipeline.pl -Xmx100G -debug -configParameters ${DOCKER_CONFIG_FILE} \
-MakeInitialPHGDBPipelinePlugin -endPlugin
I get the following error:
Exception in thread "main" java.lang.IllegalArgumentException: TasselPipeline: main: -configParameters file: -CreateValidIntervalsFilePlugin doesn't exist or isn't a file.
at net.maizegenetics.pipeline.TasselPipeline.main(TasselPipeline.java:306)
This indicates to me that I need to assign values for the currently UNASSIGNED variables. However, I cannot find any documentation or examples of the config file. Is it possible to receive an example config.txt so I can modify my file as necessary? Thanks.