We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment all the useful information is in nexus format, which can be annoying to work with.
E.g. we have this:
begin SETS; [partitions] CHARSET COI_1stpos = 1-1592\3; CHARSET COI_2ndpos = 2-1592\3; CHARSET COI_3rdpos = 3-1592\3; CHARSET 16S = 1593-3037; [loci] CHARPARTITION COI = 1:COI_1stpos, 2:COI_2ndpos, 3:COI_3rdpos; CHARPARTITION 16S = 1:16S; CHARPARTITION loci = 1:COI, 2:16S; [genomes] CHARPARTITION mitochondrial_genome = 1:COI, 2:16S; CHARPARTITION genomes = 1:mitochondrial_genome;
But this could be represented as a csv file with the following columns:
We could then use the csv file when entering the data, and build the nexus block directly from the csv file.
The text was updated successfully, but these errors were encountered:
also include a column for 'datatype' e.g. DNA, AA, etc. This comes from the top of the nexus alignment file.
Sorry, something went wrong.
include a column for codon position too (NA if it's not a codon position), so now the columns are:
1-100\3
Update generate_charset_csv.py
95c44fd
Write correct csv according to #47
No branches or pull requests
At the moment all the useful information is in nexus format, which can be annoying to work with.
E.g. we have this:
But this could be represented as a csv file with the following columns:
We could then use the csv file when entering the data, and build the nexus block directly from the csv file.
The text was updated successfully, but these errors were encountered: