I am running some STRUCTURE analysis and set k = {1..10} by using this command (only 1 run for each K):
for k in seq10
do
python /home/ubuntu/bin/fastStructure/structure.py -K $k --input=../file.snps --output=snpl525D --format=str
done
Instead of 1 run for each K, now I want to get 15 runs for each K, could you please help me to modify the code above to do this job! thanks
It seems to me you are overwriting the output at each loop iteration.