I have a set of dcd files that I want to concatenante to have one (long) dcd file. I put in a VMD Tkconsole (VMD version : 1.9.2) the following code :
catdcd -o output.dcd -i indexFile.ind input1.dcd input2.dcd input3.dcd
and I had the following error :
wrong # args: should be "catdcdList dcdFileNames outFile indexFile stride"
so I wrote :
catdcdList -d input1.dcd input2.dcd input3.dcd -o output.dcd -i indexFile.ind -s 1
Even though the catdcdList
command is reckognized (colored in green), I still have exactly the same error message. I tried out littles changes to my request but I keep getting the above error message. The second example from the official catdcd webpage does not work neither.