Hello
I would to get some advice on how to add/interpret genetic data on a model, please.
We have two dated individuals (an infant 3-4 yr old at death
and an adult 35-40 yr old at death) who are related on 1st degree but we don't know if they are mother&daughter or siblings. I'm trying to solve this combining osteological evidence for age-at-death and radiocarbon ages. Incidentally, they are both in graves cut by other graves (individuals not related at 1 or 2nd degree), also radiocarbon dated. I will want to estimate if they could be relatives beyond 3 generations apart but that's a separate issue.
I've tried different things but I'm not sure if I am getting there. I think the first two options with a Difference function are both telling me the same, they died 15 years apart minimum so they would have likely ages for being either mother and child as well as sisters.
Simple function Difference?
Plot()
{
Sequence()
{
Boundary("Start 1");
Sequence("1")
{
R_Date("infant",1369,25);
R_Date("adult",1262,24);
Difference("Difference","adult","infant");
};
Boundary("End 1");
};
};
Function Difference with a time constraint, but with a large uncertainty as I am not sure if 1 or 2 generations are represented:
Plot()
{
Sequence()
{
Boundary("Start 1");
Sequence("1")
{
R_Date("infant",1369,25);
R_Date("adult",1262,24);
Difference("Difference","adult", "infant", N(25,25));
};
Boundary("End 1");
};
};
Span for up to 2 generations:
Plot()
{
Sequence()
{
Boundary("Start 1");
Sequence("1")
{
R_Date("infant",1369,25);
R_Date("adult",1262,24);
Span("Difference 8381-8170",U(0,50));
};
Boundary("End 1");
};
};
It's only this latter that I think answers the question, and they are more likely sisters (dieing 25-50 years apart). Does this make sense and is it an acceptable way of going about it?
Thanks for your help!
Ines