Log in

View Full Version : Post your Spatial Ancestry Analysis (SPA) autosomal maps



de Burgh II
04-05-2017, 03:21 PM
That seems to run primarily on 23andme text autosomal files.

http://genetics.cs.ucla.edu/spa/

You are going to need to run this via your command prompt on your computers which everyone is issued with.

Create a folder under your documents called "SPA" before you download the components from the website.

Once you download the world and europe models into the SPA folder; extract the zip files four times until you get "world.model and europe.model" for each files needed in order to run your autosomal files.

Next are the necessary coding instructions in order to run your 23andme raw data in command prompt:

First is building a path to your folder named "spa" (that you will create in your documents section before you downloaded all the files from the site.

Enter in these simple commands into command prompt if you followed these instructions so far:


cd documents -------------> Then, cd spa

Now with the command prompt in sync with our file location being the folder SPA...

This is the next step:

FOR PEOPLE OF EUROPEAN DESCENT FOR ACCURACY

Following commands:

Ancestral approximation (singular phase):

spa --mfile file name for your 23andme raw data here.txt --model-input europe.model --location-output 23andMe.loc

If done right: should look like this:
https://s9.postimg.org/l2l3zwlr3/Untitled.jpg

Ancestral approximation split into two:


spa -n 2 --mfile file name for your 23andme raw data here.txt --model-input europe.model --location-output 23andMe.loc

Should look like this if done correctly:
https://s8.postimg.org/mwfpx96et/Untitledd.jpg


FOR MIXED ANCESTRIES/NON-EUROPEAN ANCESTRIES; same commands in command prompt is similar, but is altered slightly

WORLD MODEL; Ancestral approximation (singular phase):

spa --mfile file name for your 23andme raw data here.txt --model-input world.model --location-output 23andMe.loc

WORLD MODEL; Ancestral approximation broken into two:

spa -n 2 --mfile file name for your 23andme raw data here.txt --model-input world.model --location-output 23andMe.loc

etc.


CHROMOSOMAL BREAK DOWN

Download r program here: https://www.r-project.org/

OPEN R PROGRAM UP

File -----> Change Dir.... ---------> My Documents --------> SPA

Copy and paste this command into microsoft word or similar program


genotype<-read.table("adna.txt",as.is=T)
index<-which(genotype[,2]==1);gen1<-genotype;write.table(gen1,"adna _1.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==2);gen2<-genotype[index,];write.table(gen2,"adna _2.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==3);gen3<-genotype[index,];write.table(gen3,"adna _3.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==4);gen4<-genotype[index,];write.table(gen4,"adna _4.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==5);gen5<-genotype[index,];write.table(gen5,"adna _5.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==6);gen6<-genotype[index,];write.table(gen6,"adna _6.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==7);gen7<-genotype[index,];write.table(gen7,"adna _7.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==8);gen8<-genotype[index,];write.table(gen8,"adna _8.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==9);gen9<-genotype[index,];write.table(gen9,"adna _9.txt",sep="\t",quote =F,row.names=F,col.names=F)
index<-which(genotype[,2]==10);gen10<-genotype[index,];write.table(gen10,"adna _10.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==11);gen11<-genotype[index,];write.table(gen11,"adna _11.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==12);gen12<-genotype[index,];write.table(gen12,"adna_12.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==13);gen13<-genotype[index,];write.table(gen13,"adna _13.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==14);gen14<-genotype[index,];write.table(gen14,"adna _14.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==14);gen14<-genotype[index,];write.table(gen14,"adna _14.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==15);gen15<-genotype[index,];write.table(gen15,"adna _15.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==16);gen16<-genotype[index,];write.table(gen16,"adna _16.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==17);gen17<-genotype[index,];write.table(gen17,"adna _17.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==18);gen18<-genotype[index,];write.table(gen18,"adna _18.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==19);gen19<-genotype[index,];write.table(gen19,"adna _19.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==20);gen20<-genotype[index,];write.table(gen20,"adna _20.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==21);gen21<-genotype[index,];write.table(gen21,"adna _21.txt",sep="\t",quote=F,row.names=F,col.names=F)
index<-which(genotype[,2]==22);gen22<-genotype[index,];write.table(gen22,"adna_22.txt",sep="\t",quote=F,row.names=F,col.names=F)


*CHANGE "adna.txt" and the same instruction applies to where it says "adna.txt" in the actual chromosomes to the file name of your own 23andme raw data files*

If done correctly; files will be in your SPA folder alongside your raw data files.

Next, back to command prompt.

EUROPEAN USERS:

PRO TIP: Delete the 23andme raw data file and leave the chromosome text in place! REPLACE "adna _1.txt" and name it after your file name that you used for your 23andme raw data!
spa --mfile [I]file name for chromosomes names here.txt --model-input europe.model --location-output 23andMe.loc

AFTER YOU GET THE LOC FILE FOR YOUR CHROMOSOME LOCATION; DON'T DO THE NEXT CHROMOSOME!

MAKE A GOOGLE ACCOUNT; GO TO GOOGLE MAPS; SELECT "YOUR PLACE" from the drop down menu in the top left corner; hit the "MAP" tab and finally select "CREATE MAP."

FIND A LANDMARK FROM YOUR LOC FILE FOR YOUR CHROMOSOME IN ORDER TO GIVE A ROUGH ESTIMATION WHERE YOUR CHROMOSOME APPROXIMATES!

REPEAT THE ABOVE STEPS FOR ALL SUCCESSIVE 22 CHROMOSOMES!

If done correct it should look like this:
https://s15.postimg.org/8syeychu3/Untitledddd.jpg

MIXED/NON-EUROPEAN USERS

SAME APPLIES AS WAS DONE ABOVE BUT CODE SLIGHTLY DIFFERENTIATED:

spa --mfile file name for chromosomes names here.txt --model-input world.model --location-output 23andMe.loc

Enflamme
05-25-2017, 02:44 AM
FTDNA?

wvwvw
05-25-2017, 03:12 AM
There is already a thread about this

Dick
07-14-2017, 01:57 AM
http://i63.tinypic.com/2vjq7i8.png


http://i66.tinypic.com/j9sw90.jpg

Dick
07-14-2017, 01:59 AM
Chromosome map:


http://i64.tinypic.com/s262x0.jpg

Dibran
07-14-2017, 02:11 AM
Either instructions arent specific or it doesnt work for me. I extracted 4 times and dont get any of these files.

RN97
07-14-2017, 02:15 AM
Can someone do this for me? I'll send u the raw data.

MysteriousWays
07-14-2017, 02:36 AM
Part 1 complete...

https://s5.postimg.org/t5i7al9d3/my-ancestry.png

Part 2 (split in two ways...I don't think this is quite right though...doesn't fit with other calculators)

https://s5.postimg.org/dy27q8hif/ancestry-euro2.png

de Burgh II
07-14-2017, 02:48 AM
Either instructions arent specific or it doesnt work for me. I extracted 4 times and dont get any of these files.

It can only run on command prompt that is a manual, code-oriented software that is integrated in each computer that can be accessed through a search function on your computer:
https://s4.postimg.org/l2ii302h9/Untitled.jpg

The only downside is that it is only specifically made for 23andme formats.

Dibran
07-14-2017, 02:51 AM
It can only run on command prompt that is a manual, code-oriented software that is integrated in each computer that can be accessed through a search function on your computer:
https://s4.postimg.org/l2ii302h9/Untitled.jpg

The only downside is that it is only specifically made for 23andme formats.

Thats not the problem. I havent even got to that part. You said "Once you download the world and europe models into the SPA folder; extract the zip files four times until you get "world.model and europe.model" for each files needed in order to run your autosomal files."

I extracted it 4 times into SPA and I dont get either world.model, or europe.model

Either something is missing from the instructions, and this is a general summation, or, it doesnt work for me.

Sikeliot
07-14-2017, 02:54 AM
Part 1 complete...

https://s5.postimg.org/t5i7al9d3/my-ancestry.png

Apparently, it thinks you're from Palermo.

Dick
07-14-2017, 02:59 AM
Part 1 complete...



Part 2 (split in two ways...I don't think this is quite right though...doesn't fit with other calculators)



The 2 parent mode may be odd for some. Mine is in the same area for example, it's not spread out 50/50.


http://i66.tinypic.com/j9sw90.jpg

de Burgh II
07-14-2017, 03:15 AM
Thats not the problem. I havent even got to that part. You said "Once you download the world and europe models into the SPA folder; extract the zip files four times until you get "world.model and europe.model" for each files needed in order to run your autosomal files."

I extracted it 4 times into SPA and I dont get either world.model, or europe.model

Either something is missing from the instructions, and this is a general summation, or, it doesnt work for me.

Tip: *Also put your downloaded raw data 23andme text file in you specified folder that I forgot to include*

I see; so I'm assuming that you have the files in a created SPA folder that have been extracted from the zip file 3 times until it looks like this in its base form?
1st form (unzipped):
https://s18.postimg.org/vjdv7fh61/Untitled.jpg
2nd form (unzipped once):
https://s4.postimg.org/oscjsc971/Untitledd.jpg
3rd/final form: (unzipped .tar file next):
https://s10.postimg.org/6us7qal1l/Untitleddd.jpg

If so then thats when you have to create a manual path to your specified folder via the command prompt like this:
https://s9.postimg.org/ys9l4jrz3/Untitled.jpg

The arrows are denoting the manual path you create; that links the downloaded files in the specified folder you are coding the command prompt to. With these two commands you put in:

cd my documents -> cd nameofyourfolderfile

With this step finalized; you can move on to putting in the commands for the actual software (SPA) to operate listed above.

MysteriousWays
07-14-2017, 03:27 AM
Pretty freaking amazing!

https://s5.postimg.org/sijal2ch3/voila.png

Dibran
07-14-2017, 03:31 AM
Tip: *Also put your downloaded raw data 23andme text file in you specified folder that I forgot to include*

I see; so I'm assuming that you have the files in a created SPA folder that have been extracted from the zip file 3 times until it looks like this in its base form?
1st form (unzipped):
https://s18.postimg.org/vjdv7fh61/Untitled.jpg
2nd form (unzipped once):
https://s4.postimg.org/oscjsc971/Untitledd.jpg
3rd/final form: (unzipped .tar file next):
https://s10.postimg.org/6us7qal1l/Untitleddd.jpg

If so then thats when you have to create a manual path to your specified folder via the command prompt like this:
https://s9.postimg.org/ys9l4jrz3/Untitled.jpg

The arrows are denoting the manual path you create; that links the downloaded files in the specified folder you are coding the command prompt to. With these two commands you put in:

cd my documents -> cd nameofyourfolderfile

With this step finalized; you can move on to putting in the commands for the actual software (SPA) to operate listed above.

See i dont get any of those results. I extracted the first time. Got base form 1. Extracted number 2, it tells me to either overwrite or skip. There is no option to extract a third. Even when extracting to a separate file it still only extracts base 1 form.

Freeroostah
07-14-2017, 03:33 AM
65735


Like most of Mainland Greeks.....

Sikeliot
07-14-2017, 03:36 AM
65735


Like most of Mainland Greeks.....

Abruzzese. :lol:

de Burgh II
07-14-2017, 03:36 AM
See i dont get any of those results. I extracted the first time. Got base form 1. Extracted number 2, it tells me to either overwrite or skip. There is no option to extract a third. Even when extracting to a separate file it still only extracts base 1 form.

For the extracting software for .zip files; I use 7zip which is free and seems to work for me... http://www.7-zip.org/download.html

MysteriousWays
07-14-2017, 03:41 AM
Apparently, it thinks you're from Palermo.

Yes, but the location of individual chromosomes shows something somewhat different, I think. Unfortunately, I don't think we have any Palermitans to compare with.

Dibran
07-14-2017, 03:44 AM
It can only run on command prompt that is a manual, code-oriented software that is integrated in each computer that can be accessed through a search function on your computer:
https://s4.postimg.org/l2ii302h9/Untitled.jpg

The only downside is that it is only specifically made for 23andme formats.

Now this is the error i receive when inputing your directions. what am I doing wrong>?

:\Users\Owner\My Documents\spa> mfile genome_namei_v4_Full_20170503055412.txt --model-input europe.model --location-output 23andMe.loc
'mfile' is not recognized as an internal or external command,
operable program or batch file.

Sikeliot
07-14-2017, 03:44 AM
Yes, but the location of individual chromosomes shows something somewhat different, I think. Unfortunately, I don't think we have any Palermitans to compare with.

I put one of my cousins through there once and it put her plotting just north of Libya and south of Crete.

Dick
07-14-2017, 03:45 AM
Abruzzese. :lol:

Why is that funny? I'm being serious here.

MysteriousWays
07-14-2017, 03:46 AM
I put one of my cousins through there once and it put her plotting just north of Libya and south of Crete.

Was it through this one or was it through the other mapping thing that I have seen for Eurogenes k15? The other one puts me south of Cyprus, just north of Egypt.

de Burgh II
07-14-2017, 03:55 AM
Now this is the error i receive when inputing your directions. what am I doing wrong>?

:\Users\Owner\My Documents\spa> mfile genome_namei_v4_Full_20170503055412.txt --model-input europe.model --location-output 23andMe.loc
'mfile' is not recognized as an internal or external command,
operable program or batch file.

For the copy and paste for the singular phase you are missing these commands in red:
spa --mfile file name for your 23andme raw data here.txt --model-input europe.model --location-output 23andMe.loc

frankhammer
07-14-2017, 04:27 AM
Where is your 23andme data meant to be located for this to work? The same directory? There are no pointers to it otherwise.

Dibran
07-14-2017, 04:32 AM
Not very accurate

65736

de Burgh II
07-14-2017, 04:36 AM
Where is your 23andme data meant to be located for this to work? The same directory? There are no pointers to it otherwise.

23andme text file (you can download the raw data from the 23andme site) should be included with the Europe model and World model in a new folder renamed "SPA" or some folder file name along those lines in order to process your raw data with the software.

The command prompt is essentially the "impetus" to make the software work per se.

frankhammer
07-14-2017, 04:51 AM
23andme text file (you can download the raw data from the 23andme site) should be included with the Europe model and World model in a new folder renamed "SPA" or some folder file name along those lines in order to process your raw data with the software.

The command prompt is essentially the "impetus" to make the software work per se.

I used dos back in the day so had preempted this post and done it that way. Unfortunately, even with the "spa" in the correct place, I get the following.

C:\Users\wazzagama\Documents\SPA>spa -n 2 --mfile genome_filename_v4_Full_20160923415036.txt --model-input europe.model --location-output 23andMe.loc
'spa' is not recognized as an internal or external command,
operable program or batch file.

de Burgh II
07-14-2017, 04:58 AM
I used dos back in the day so had preempted this post and done it that way. Unfortunately, even with the "spa" in the correct place, I get the following.

C:\Users\wazzagama\Documents\SPA>spa -n 2 --mfile genome_filename_v4_Full_20160923415036.txt --model-input europe.model --location-output 23andMe.loc
'spa' is not recognized as an internal or external command,
operable program or batch file.

That is weird... it has been a while since I played around with this software, but maybe the folder is in 'my documents' instead of 'documents'?

If not, you can try renaming the folder something else to avoid the spa error and placing it elsewhere around your library. I would assume that would be an ideal, logical fix for this predicament.

EDIT: You can download the Linux which is its equivalent with command prompts rather than the MAC or Windows GUI interface.

frankhammer
07-14-2017, 05:04 AM
I'll fiddle around with it later tonight. It's late afternoon, stormy and wet and I'm going for a walk :p

Lucas
07-14-2017, 09:48 AM
My map http://www.theapricity.com/forum/showthread.php?211238-Google-Map-with-position-of-every-chromosome-(SPA-programm)-Somebody-try-this&p=4430884#post4430884

https://s11.postimg.org/5joqarwsj/spa.jpg

Map with localization for whole, nondivided genome. Possible radius for localization is 500 km. In my case Greater Poland is here. Not far from Central Poland, which is my main ancestry.

In my opinion whole genome localization shows your more recent ancestry. But localizations for chromosomes reflect some ancient roots. Inb my case Proto-Slavic, Baltic, North-Germanic, Celtic. I'm not sure about Czechia and Austria... Maybe some local, Bronze Age autochtonic population?

https://s18.postimg.org/6nas317ah/image.jpg


My ancestry (for whole genome) split into two.

https://s21.postimg.org/4vt2evh93/two-ancestry.jpg

MysteriousWays
07-14-2017, 10:29 AM
I'm also very surprised with the amount of North African that I am getting in the SPA. This is quite surprising to me given what I am.The rest of it seems to make sense, I think.

MysteriousWays
07-14-2017, 11:11 AM
One more map for everyone to peruse over...Split chromosomes. Perhaps surprisingly, most chromosome splits where I am are quite close in terms of location, perhaps(?) suggesting a high degree of confident in location.

https://s5.postimg.org/67vw4gw4n/split-chromosomes.png

RN97
07-14-2017, 01:57 PM
I used dos back in the day so had preempted this post and done it that way. Unfortunately, even with the "spa" in the correct place, I get the following.

C:\Users\wazzagama\Documents\SPA>spa -n 2 --mfile genome_filename_v4_Full_20160923415036.txt --model-input europe.model --location-output 23andMe.loc
'spa' is not recognized as an internal or external command,
operable program or batch file.
I get this error no matter what I try.
http://i.imgur.com/h3FQhDp.png
I don't think I'm doing anything wrong.

wvwvw
07-16-2017, 07:20 AM
http://i66.tinypic.com/vfilcp.jpg

de Burgh II
11-28-2017, 10:32 PM
:bump2:

http://www.verbalgoldblog.com/wp-content/uploads/2015/06/tumblr_mn62l5tB7Y1qcdozto1_500.gif

Hamlet
11-28-2017, 10:45 PM
This is so much effort :( What's so interesting about it that it's worth doing?

I don't even have Windows, btw, so can't use command prompt

de Burgh II
11-28-2017, 10:50 PM
This is so much effort :( What's so interesting about it that it's worth doing?

I don't even have Windows, btw, so can't use command prompt

Its one of the few programs out there that can plot your autosomal dna as well as denoting each separate autosomal chromosome as its own entity; that approximates where each chromosome derives from ancestrally.

Dick
11-28-2017, 10:58 PM
http://i63.tinypic.com/2vjq7i8.png


http://i66.tinypic.com/j9sw90.jpg


Chromosome map:


http://i64.tinypic.com/s262x0.jpg

Hamlet
11-28-2017, 10:59 PM
Its one of the few programs out there that can plot your autosomal dna as well as denoting each separate autosomal chromosome as its own entity; that approximates where each chromosome derives from ancestrally.

Nah cba, I dont care about each chromosome specifically

Damiăo de Góis
11-28-2017, 11:08 PM
http://oi68.tinypic.com/2mpk4gj.jpg

GiCa
11-28-2017, 11:20 PM
Abruzzese. :lol:

in the adriatic sea infront of abruzzo

GiCa
11-28-2017, 11:25 PM
Not very accurate

65736

Potenza

Gangrel
11-28-2017, 11:36 PM
https://i.imgur.com/ym0uME8.png


https://www.youtube.com/watch?v=3Vn2xrSG24w

Gangrel
11-28-2017, 11:38 PM
With the Europe model I become Sikelian

https://i.imgur.com/wO7Ygbq.png

Gangrel
11-28-2017, 11:47 PM
I get this error no matter what I try.
http://i.imgur.com/h3FQhDp.png
I don't think I'm doing anything wrong.

yall realise you dont have to locate to the folder with cmd

if you type cmd in the search bar in a folder it will automatically launch cmd in that folder, don't have to locate shit and ignore the spa part

like this

https://i.imgur.com/f2Od9Ru.png

Kelmendasi
11-29-2017, 07:54 PM
yall realise you dont have to locate to the folder with cmd

if you type cmd in the search bar in a folder it will automatically launch cmd in that folder, don't have to locate shit and ignore the spa part

like this

https://i.imgur.com/f2Od9Ru.png
Eyy broski allow do dis pls?

Dibran
11-30-2017, 01:12 AM
Potenza

Yea, doesnt make much sense. My father plots near Bari. We're Albanians, and given Y-DNA I don't see how R1a would come from Potenza. I think since Albanians score high IT like Italians that it plots them there?

Thracian
12-05-2017, 01:22 PM
70368

It seems not accurate.

TEUTORIGOS
04-25-2018, 10:33 PM
I don't understand why I am supposed to care where each chromosome maps. Here is the overall :

http://img.photobucket.com/albums/v336/naudiz/overall_zpsylzyxh9j.jpg

http://www.europeanheraldry.org/files/8014/1432/1298/Marquess_of_Clanricarde_1646.jpg

https://ka-perseus-images.s3.amazonaws.com/5ae49e347eafa34b31516b382d66331f8df9954a.jpg

https://image.slidesharecdn.com/ziaeng-150212013520-conversion-gate01/95/zia-eng-25-638.jpg?cb=1423705159

https://us.toluna.com/dpolls_images/2016/12/20/0bd71167-b23c-41cd-a76e-0dfccbdbdff7_x300.jpg


https://www.youtube.com/watch?v=0JJXhtIz-3Q

Dick
08-08-2018, 11:37 PM
http://i63.tinypic.com/2vjq7i8.png



Chromosomes map:


http://i64.tinypic.com/s262x0.jpg

Bosniensis
08-09-2018, 05:27 AM
https://i.imgur.com/RhVMN0D.png

Lucas
08-09-2018, 02:28 PM
It was interesting but doing all chromosome maps was real pain in the ass. Someone could automatize this tool.

Dick
08-09-2018, 09:29 PM
https://i.imgur.com/RhVMN0D.png

True Pannonian Illyrian

Eruanna
09-17-2018, 10:48 AM
80105
Strange, as 23andme is saying that I'm only 1,7% German :)

alnortedelsur
09-23-2018, 03:32 AM
Now this is the error i receive when inputing your directions. what am I doing wrong>?

:\Users\Owner\My Documents\spa> mfile genome_namei_v4_Full_20170503055412.txt --model-input europe.model --location-output 23andMe.loc
'mfile' is not recognized as an internal or external command,
operable program or batch file.

I got up there and same problem here

alnortedelsur
09-23-2018, 03:52 AM
That is weird... it has been a while since I played around with this software, but maybe the folder is in instead of 'documents'?

If not, you can try renaming the folder something else to avoid the spa error and placing it elsewhere around your library. I would assume that would be an ideal, logical fix for this predicament.

EDIT: You can download the Linux which is its equivalent with command prompts rather than the MAC or Windows GUI interface.

How I get to "my documents" in command prompt? I already cut and pasted the SPA folder into "my documents", and in command prompt, the farthest back I can get is to C:\>, and when I enter the command dir, the directory 'my documents' doesn't show.

Dick
01-07-2019, 07:46 PM
Bump. Has anyone else tried this?

Ayetooey
01-07-2019, 07:48 PM
This looks cool.

Lucas
01-07-2019, 08:44 PM
This looks cool.

Yes, but it took me half a day to accomplish... Some chromosomes were positioned really different than I expected. Generally cool.

Lemgrant
01-13-2019, 02:32 PM
I don't have 23andme raw data file so I converted from AncestryDNA to ftdna and then to 23andme with this program: http://www.y-str.org/2013/06/autosomal-dna-converter.html

Ancestral approximation (singular phase):

https://i.imgur.com/u7HHtgk.png

Ancestral approximation split into two:

https://i.imgur.com/7nE7psQ.png

Lucas
01-13-2019, 04:28 PM
I don't have 23andme raw data file so I converted from AncestryDNA to ftdna and then to 23andme with this program: http://www.y-str.org/2013/06/autosomal-dna-converter.html

Ancestral approximation (singular phase):


Ancestral approximation split into two:


Do for every 22 chromo. This is real challenge:)

Mine, looks too western shifted for a Pole.

https://i.postimg.cc/B6PPSNzv/spa.jpg

Ayetooey
01-13-2019, 04:53 PM
Seems like everyone is north shifted slightly, or west shifted, on this map.

Lucas
01-13-2019, 05:06 PM
Seems like everyone is north shifted slightly, or west shifted, on this map.

Yes, I dont' remember their references for that. Maybe it is old HGDP dataset.

Lemgrant
01-13-2019, 05:46 PM
Do for every 22 chromo. This is real challenge:)



https://i.imgur.com/EYY1yH7.jpg

Kaspias
01-13-2019, 06:10 PM
I tried with converting 2 different FTDNA file to 23andMe.

1. Europe: North Adriatic World: Atlantic
2. Europe: South Adriatic World: Atlantic

I suspect something is wrong?

Lucas
01-13-2019, 06:27 PM
I tried with converting 2 different FTDNA file to 23andMe.

1. Europe: North Adriatic World: Atlantic
2. Europe: South Adriatic World: Atlantic

I suspect something is wrong?

I also had some chromo in the sea. Program doesn't know what is land or what is sea. For Balkanite Adriatic isn't so bad.

But for world I also had Atlantic, it doesn't work correctly.

Coastal Elite
01-01-2020, 03:04 AM
Single

https://i.imgur.com/hcwApJL.jpg

Split

https://i.imgur.com/6v0KY2K.jpg

Coastal Elite
01-01-2020, 07:54 AM
Google Streetview for locations. others should post Streetview locations

Single - Near Essarois, France

https://i.imgur.com/1gvQiTe.jpg
https://i.imgur.com/hcwApJL.jpg

Split

Near Kaiserslauten, Germany
https://i.imgur.com/MUnI41M.jpg

Noth, France
https://i.imgur.com/QSHTGAW.jpg

https://i.imgur.com/6v0KY2K.jpg

Coastal Elite
01-01-2020, 11:58 PM
bump

Lemgrant
01-02-2020, 12:07 AM
Single

https://i.imgur.com/hcwApJL.jpg

Split

https://i.imgur.com/6v0KY2K.jpg

what an astonishing accuracy for a Romanian/Irish
:icon_smile::rofl:

Coastal Elite
01-02-2020, 12:11 AM
what an astonishing accuracy for a Romanian/Irish
:icon_smile::rofl:

Same old story, I get midpointed to France and Germany. 23andMe did the best job at identifying my mix.

Lemgrant
01-02-2020, 12:16 AM
Same old story, I get midpointed to France and Germany. 23andMe did the best job at identifying my mix.

I mean the 2-way/split mode.

Coastal Elite
01-02-2020, 12:24 AM
I mean the 2-way/split mode.

Yes, that was way off. They turned me from an Irish-Romanian tough guy to a French-German effete wine snob. I don't like it one bit.

Luke35
01-02-2020, 12:31 AM
Same old story, I get midpointed to France and Germany. 23andMe did the best job at identifying my mix.

Yep. And 23andMe did not give you 20 choices, and you pick the closest. They said, this is you.

Coastal Elite
01-02-2020, 12:38 AM
Yep. And 23andMe did not give you 20 choices, and you pick the closest. They said, this is you.

23andMe was the only DNA test that showed me basic human dignity. Before 23andMe, friends and family would mock my midpoint status. They would say mean, hurtful things and threw dinner rolls at my head. Now I can walk with my head up knowing at least one test was in the ballpark.

Luke35
01-02-2020, 12:41 AM
23andMe was the only DNA test that showed me basic human dignity. Before 23andMe, friends and family would mock my midpoint status. They would say mean, hurtful things and threw dinner rolls at my head. Now I can walk with my head up knowing at least one test was in the ballpark.

ahahahahaha

Kaspias
01-02-2020, 02:35 AM
A picture of me + DNA results

Known admixture: 3/4 Dolphin from the Atlantic Ocean, 1/4 Anchovy from the Tyrrhenian Sea. Paternal surname points out migration from the Pacific Ocean.

https://img1.grunge.com/img/gallery/are-sharks-really-afraid-of-dolphins/intro-1566586521.jpg

https://i.hizliresim.com/6DOkLE.png
https://i.hizliresim.com/WX5ZLP.png

Dick
01-02-2020, 03:23 AM
A picture of me + DNA results

Known admixture: 3/4 Dolphin from the Atlantic Ocean, 1/4 Anchovy from the Tyrrhenian Sea. Paternal surname points out migration from the Pacific Ocean.

https://img1.grunge.com/img/gallery/are-sharks-really-afraid-of-dolphins/intro-1566586521.jpg

https://i.hizliresim.com/6DOkLE.png
https://i.hizliresim.com/WX5ZLP.png

Maybe you are too mixed for it to be decent

Lucas
01-02-2020, 07:32 PM
Maybe you are too mixed for it to be decent

Wake up:)