Hi Bernd,
I'm just a fellow fastSimcoal user, but: when you simulate SNPs using the DNA marker type, you specify the length of the sequence using the "num loci" parameter in the last line of the parameter file. As noted in
the manual, for DNA markers, this value is the sequence length. For instance, the lines below:
```
//Number of independent loci [chromosomes]
10 0
//Per chromosome: Number of linkage blocks
6
//Per block: data type, num loci, rec. rate and mut rate + optional parameters
DNA 30 0 0.000005 0.333333333333333
DNA 30 0 0.000005 0.333333333333333
DNA 30 0 0.000005 0.333333333333333
DNA 30 0 0.000005 0.333333333333333
DNA 30 0 0.000005 0.333333333333333
DNA 30 0 0.000005 0.333333333333333
```
This would simulate 10 chromosomes, with 6 "blocks" per chromosome. Each block would be 30 bp long. I'd recommend reading the "Input File Syntax" section of the manual for more explanation on this.
Specifying a sequence length of 1 would simulate a single base pair as the genetic information for your individual--which isn't typically how SNP data is presented. Usually, SNP data consists of a series of base pairs (50 bp, 100 bp, even 500 bp), with a single or multiple sites (SNPs) within that section of DNA.
Hope this helps,
-Austin