From mohamed.amine.chebbi at univ-poitiers.fr Fri Dec 2 09:10:15 2016 From: mohamed.amine.chebbi at univ-poitiers.fr (chebbi mohamed amine) Date: Fri, 2 Dec 2016 16:10:15 +0100 (CET) Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> Message-ID: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Yes, the GFF3 file generated by maker is missing these ID. The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), w hich could cause the error. I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: % map_fasta_ids maker.all.map all.maker.proteins.fasta WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 % grep " _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 " maker.gff scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias= maker-scaffold_1710-augustus-gene-0.23-mRNA-1 ; _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 ; # Then, Replace in the all.maker.proteins.fasta " maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1 " Best, Amine De: "chebbi mohamed amine" ?: "Carson Holt" Cc: "Maker Mailing List" Envoy?: Mardi 29 Novembre 2016 10:08:56 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics De: "Carson Holt" ?: "Mohamed Amine Chebbi" Cc: "Maker Mailing List" Envoy?: Lundi 28 Novembre 2016 17:26:40 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. ?Carson On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi < mohamed.amine.chebbi at univ-poitiers.fr > wrote: Hello ! I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. I wounder if you can explain me the reason of these warning message and how to resolve it. Thank you , Best, Amine _______________________________________________ maker-devel mailing list maker-devel at box290.bluehost.com http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From carsonhh at gmail.com Fri Dec 2 16:07:53 2016 From: carsonhh at gmail.com (Carson Holt) Date: Fri, 2 Dec 2016 15:07:53 -0700 Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Message-ID: If there is a mismatch between the GFF and fasta files, then there was an IO error and a truncated file (not uncommon on NFS), and you need to rerun the contig in question. Before merging all results with gff3_merge and fasta_merge. ?Carson > On Dec 2, 2016, at 8:10 AM, chebbi mohamed amine wrote: > > Yes, the GFF3 file generated by maker is missing these ID. > > The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), which could cause the error. > > I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: > > % map_fasta_ids maker.all.map all.maker.proteins.fasta > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > > % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta > >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 > > % grep "_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00" maker.gff > > scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias=maker-scaffold_1710-augustus-gene-0.23-mRNA-1;_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00; > > # Then, Replace in the all.maker.proteins.fasta "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1" > > Best, > Amine > > De: "chebbi mohamed amine" > ?: "Carson Holt" > Cc: "Maker Mailing List" > Envoy?: Mardi 29 Novembre 2016 10:08:56 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. > I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics > De: "Carson Holt" > ?: "Mohamed Amine Chebbi" > Cc: "Maker Mailing List" > Envoy?: Lundi 28 Novembre 2016 17:26:40 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. > > ?Carson > > > > On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi > wrote: > Hello ! > > I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 > > Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. > > I wounder if you can explain me the reason of these warning message and how to resolve it. > > Thank you , > > Best, > Amine > _______________________________________________ > maker-devel mailing list > maker-devel at box290.bluehost.com > http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 20 05:51:11 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 20 Dec 2016 05:51:11 -0600 Subject: [maker-devel] Greetings Message-ID: <003701d25abb$0194b4fd$e0486599@jlbtl> Dear maker-devel, We are looking for employees working remotely. My name is Herschel, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5500. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 06:25:47 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 23 Dec 2016 12:25:47 +0000 Subject: [maker-devel] Vacancy #627 Message-ID: <585D1E1F.9003.DEBA54@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Saundra, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2400-$5200. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 13:02:13 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: Fri, 23 Dec 2016 10:02:13 -0900 Subject: [maker-devel] From International Company Message-ID: <585D74B5.3080700@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Latoya, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5800. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Sat Dec 24 09:58:35 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 24 Dec 2016 17:58:35 +0200 Subject: [maker-devel] hello Message-ID: <585E9FDB.4064.6342B6@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Phillip, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5900. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Mon Dec 26 15:14:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 03:14:19 +0600 Subject: [maker-devel] Salary [$1500 /week] Message-ID: <58618C9F.8417.43E8F8@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Chuck, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2300-$5400. If you are interested in this offer, please visit Our Site d_healthBest regards! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 27 10:47:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 20:47:19 +0400 Subject: [maker-devel] for CV Message-ID: <080050790.201612272057@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Leigh, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5700. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohamed.amine.chebbi at univ-poitiers.fr Fri Dec 2 08:10:15 2016 From: mohamed.amine.chebbi at univ-poitiers.fr (chebbi mohamed amine) Date: Fri, 2 Dec 2016 16:10:15 +0100 (CET) Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> Message-ID: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Yes, the GFF3 file generated by maker is missing these ID. The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), w hich could cause the error. I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: % map_fasta_ids maker.all.map all.maker.proteins.fasta WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 % grep " _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 " maker.gff scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias= maker-scaffold_1710-augustus-gene-0.23-mRNA-1 ; _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 ; # Then, Replace in the all.maker.proteins.fasta " maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1 " Best, Amine De: "chebbi mohamed amine" ?: "Carson Holt" Cc: "Maker Mailing List" Envoy?: Mardi 29 Novembre 2016 10:08:56 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics De: "Carson Holt" ?: "Mohamed Amine Chebbi" Cc: "Maker Mailing List" Envoy?: Lundi 28 Novembre 2016 17:26:40 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. ?Carson On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi < mohamed.amine.chebbi at univ-poitiers.fr > wrote: Hello ! I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. I wounder if you can explain me the reason of these warning message and how to resolve it. Thank you , Best, Amine _______________________________________________ maker-devel mailing list maker-devel at box290.bluehost.com http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From carsonhh at gmail.com Fri Dec 2 15:07:53 2016 From: carsonhh at gmail.com (Carson Holt) Date: Fri, 2 Dec 2016 15:07:53 -0700 Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Message-ID: If there is a mismatch between the GFF and fasta files, then there was an IO error and a truncated file (not uncommon on NFS), and you need to rerun the contig in question. Before merging all results with gff3_merge and fasta_merge. ?Carson > On Dec 2, 2016, at 8:10 AM, chebbi mohamed amine wrote: > > Yes, the GFF3 file generated by maker is missing these ID. > > The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), which could cause the error. > > I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: > > % map_fasta_ids maker.all.map all.maker.proteins.fasta > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > > % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta > >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 > > % grep "_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00" maker.gff > > scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias=maker-scaffold_1710-augustus-gene-0.23-mRNA-1;_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00; > > # Then, Replace in the all.maker.proteins.fasta "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1" > > Best, > Amine > > De: "chebbi mohamed amine" > ?: "Carson Holt" > Cc: "Maker Mailing List" > Envoy?: Mardi 29 Novembre 2016 10:08:56 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. > I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics > De: "Carson Holt" > ?: "Mohamed Amine Chebbi" > Cc: "Maker Mailing List" > Envoy?: Lundi 28 Novembre 2016 17:26:40 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. > > ?Carson > > > > On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi > wrote: > Hello ! > > I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 > > Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. > > I wounder if you can explain me the reason of these warning message and how to resolve it. > > Thank you , > > Best, > Amine > _______________________________________________ > maker-devel mailing list > maker-devel at box290.bluehost.com > http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 20 04:51:11 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 20 Dec 2016 05:51:11 -0600 Subject: [maker-devel] Greetings Message-ID: <003701d25abb$0194b4fd$e0486599@jlbtl> Dear maker-devel, We are looking for employees working remotely. My name is Herschel, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5500. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 05:25:47 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 23 Dec 2016 12:25:47 +0000 Subject: [maker-devel] Vacancy #627 Message-ID: <585D1E1F.9003.DEBA54@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Saundra, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2400-$5200. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 12:02:13 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: Fri, 23 Dec 2016 10:02:13 -0900 Subject: [maker-devel] From International Company Message-ID: <585D74B5.3080700@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Latoya, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5800. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Sat Dec 24 08:58:35 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 24 Dec 2016 17:58:35 +0200 Subject: [maker-devel] hello Message-ID: <585E9FDB.4064.6342B6@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Phillip, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5900. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Mon Dec 26 14:14:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 03:14:19 +0600 Subject: [maker-devel] Salary [$1500 /week] Message-ID: <58618C9F.8417.43E8F8@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Chuck, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2300-$5400. If you are interested in this offer, please visit Our Site d_healthBest regards! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 27 09:47:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 20:47:19 +0400 Subject: [maker-devel] for CV Message-ID: <080050790.201612272057@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Leigh, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5700. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohamed.amine.chebbi at univ-poitiers.fr Fri Dec 2 08:10:15 2016 From: mohamed.amine.chebbi at univ-poitiers.fr (chebbi mohamed amine) Date: Fri, 2 Dec 2016 16:10:15 +0100 (CET) Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> Message-ID: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Yes, the GFF3 file generated by maker is missing these ID. The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), w hich could cause the error. I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: % map_fasta_ids maker.all.map all.maker.proteins.fasta WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 % grep " _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 " maker.gff scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias= maker-scaffold_1710-augustus-gene-0.23-mRNA-1 ; _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 ; # Then, Replace in the all.maker.proteins.fasta " maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1 " Best, Amine De: "chebbi mohamed amine" ?: "Carson Holt" Cc: "Maker Mailing List" Envoy?: Mardi 29 Novembre 2016 10:08:56 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics De: "Carson Holt" ?: "Mohamed Amine Chebbi" Cc: "Maker Mailing List" Envoy?: Lundi 28 Novembre 2016 17:26:40 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. ?Carson On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi < mohamed.amine.chebbi at univ-poitiers.fr > wrote: Hello ! I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. I wounder if you can explain me the reason of these warning message and how to resolve it. Thank you , Best, Amine _______________________________________________ maker-devel mailing list maker-devel at box290.bluehost.com http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From carsonhh at gmail.com Fri Dec 2 15:07:53 2016 From: carsonhh at gmail.com (Carson Holt) Date: Fri, 2 Dec 2016 15:07:53 -0700 Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Message-ID: If there is a mismatch between the GFF and fasta files, then there was an IO error and a truncated file (not uncommon on NFS), and you need to rerun the contig in question. Before merging all results with gff3_merge and fasta_merge. ?Carson > On Dec 2, 2016, at 8:10 AM, chebbi mohamed amine wrote: > > Yes, the GFF3 file generated by maker is missing these ID. > > The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), which could cause the error. > > I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: > > % map_fasta_ids maker.all.map all.maker.proteins.fasta > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > > % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta > >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 > > % grep "_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00" maker.gff > > scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias=maker-scaffold_1710-augustus-gene-0.23-mRNA-1;_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00; > > # Then, Replace in the all.maker.proteins.fasta "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1" > > Best, > Amine > > De: "chebbi mohamed amine" > ?: "Carson Holt" > Cc: "Maker Mailing List" > Envoy?: Mardi 29 Novembre 2016 10:08:56 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. > I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics > De: "Carson Holt" > ?: "Mohamed Amine Chebbi" > Cc: "Maker Mailing List" > Envoy?: Lundi 28 Novembre 2016 17:26:40 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. > > ?Carson > > > > On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi > wrote: > Hello ! > > I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 > > Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. > > I wounder if you can explain me the reason of these warning message and how to resolve it. > > Thank you , > > Best, > Amine > _______________________________________________ > maker-devel mailing list > maker-devel at box290.bluehost.com > http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 20 04:51:11 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 20 Dec 2016 05:51:11 -0600 Subject: [maker-devel] Greetings Message-ID: <003701d25abb$0194b4fd$e0486599@jlbtl> Dear maker-devel, We are looking for employees working remotely. My name is Herschel, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5500. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 05:25:47 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 23 Dec 2016 12:25:47 +0000 Subject: [maker-devel] Vacancy #627 Message-ID: <585D1E1F.9003.DEBA54@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Saundra, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2400-$5200. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 12:02:13 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: Fri, 23 Dec 2016 10:02:13 -0900 Subject: [maker-devel] From International Company Message-ID: <585D74B5.3080700@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Latoya, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5800. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Sat Dec 24 08:58:35 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 24 Dec 2016 17:58:35 +0200 Subject: [maker-devel] hello Message-ID: <585E9FDB.4064.6342B6@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Phillip, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5900. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Mon Dec 26 14:14:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 03:14:19 +0600 Subject: [maker-devel] Salary [$1500 /week] Message-ID: <58618C9F.8417.43E8F8@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Chuck, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2300-$5400. If you are interested in this offer, please visit Our Site d_healthBest regards! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 27 09:47:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 20:47:19 +0400 Subject: [maker-devel] for CV Message-ID: <080050790.201612272057@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Leigh, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5700. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From mohamed.amine.chebbi at univ-poitiers.fr Fri Dec 2 08:10:15 2016 From: mohamed.amine.chebbi at univ-poitiers.fr (chebbi mohamed amine) Date: Fri, 2 Dec 2016 16:10:15 +0100 (CET) Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> Message-ID: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Yes, the GFF3 file generated by maker is missing these ID. The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), w hich could cause the error. I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: % map_fasta_ids maker.all.map all.maker.proteins.fasta WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 % grep " _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 " maker.gff scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias= maker-scaffold_1710-augustus-gene-0.23-mRNA-1 ; _AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00 ; # Then, Replace in the all.maker.proteins.fasta " maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1 " Best, Amine De: "chebbi mohamed amine" ?: "Carson Holt" Cc: "Maker Mailing List" Envoy?: Mardi 29 Novembre 2016 10:08:56 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics De: "Carson Holt" ?: "Mohamed Amine Chebbi" Cc: "Maker Mailing List" Envoy?: Lundi 28 Novembre 2016 17:26:40 Objet: Re: [maker-devel] map_fasta_ids : No mapping available... The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. ?Carson On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi < mohamed.amine.chebbi at univ-poitiers.fr > wrote: Hello ! I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. I wounder if you can explain me the reason of these warning message and how to resolve it. Thank you , Best, Amine _______________________________________________ maker-devel mailing list maker-devel at box290.bluehost.com http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From carsonhh at gmail.com Fri Dec 2 15:07:53 2016 From: carsonhh at gmail.com (Carson Holt) Date: Fri, 2 Dec 2016 15:07:53 -0700 Subject: [maker-devel] map_fasta_ids : No mapping available... In-Reply-To: <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> References: <773569486.15711466.1480023901276.JavaMail.zimbra@univ-poitiers.fr> <401400E0-7581-4407-A30E-A787485B0E86@gmail.com> <871586488.19268830.1480691415050.JavaMail.zimbra@univ-poitiers.fr> Message-ID: If there is a mismatch between the GFF and fasta files, then there was an IO error and a truncated file (not uncommon on NFS), and you need to rerun the contig in question. Before merging all results with gff3_merge and fasta_merge. ?Carson > On Dec 2, 2016, at 8:10 AM, chebbi mohamed amine wrote: > > Yes, the GFF3 file generated by maker is missing these ID. > > The master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), which could cause the error. > > I have managed the problem by extracting the missing ID doing a "grep" into the gff3 file using AED and QI statistics and then replace missing ID into the proteinf fasta file like below: > > % map_fasta_ids maker.all.map all.maker.proteins.fasta > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > > % grep "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" all.maker.proteins.fasta > >maker-scaffold_1710-augustus-gene-0.3-mRNA-1 protein AED:0.00 eAED:0.00 QI:50|1|1|1|0.66|0.75|4|142|117 > > % grep "_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00" maker.gff > > scaffold_1710 maker mRNA 120513 125092 . + . ID=AV_03422-RA;Parent=AV_03422;Name=AV_03422-RA;Alias=maker-scaffold_1710-augustus-gene-0.23-mRNA-1;_AED=0.00;_QI=50|1|1|1|0.66|0.75|4|142|117;_eAED=0.00; > > # Then, Replace in the all.maker.proteins.fasta "maker-scaffold_1710-augustus-gene-0.3-mRNA-1" by " maker-scaffold_1710-augustus-gene-0.23-mRNA-1" > > Best, > Amine > > De: "chebbi mohamed amine" > ?: "Carson Holt" > Cc: "Maker Mailing List" > Envoy?: Mardi 29 Novembre 2016 10:08:56 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > Yes, the GFF3 file genrated by maker is missing these ID. the master_datastore_index file indicate failed runs on the scaffolds (scaffold_1710 and scaffold_1734), Which could cause the error. > I have managed the problem by extracting the missing ID doing a grep in to AED and QI statistics > De: "Carson Holt" > ?: "Mohamed Amine Chebbi" > Cc: "Maker Mailing List" > Envoy?: Lundi 28 Novembre 2016 17:26:40 > Objet: Re: [maker-devel] map_fasta_ids : No mapping available... > > The map file you run with is two columns (old_id and new_id). If the input file has IDs that do not match anything in the old_id column then it throws the warning. It means there is a mismatch between the map file being used and the fasta file. This can occur if you did downstream manipulation of the fasta file, are using the wrong fasta file, or if you used GFF3 as input to a maker step that as generated an ID mismatch. > > ?Carson > > > > On Nov 24, 2016, at 2:45 PM, Mohamed Amine Chebbi > wrote: > Hello ! > > I'am attempting to rename genes of maker.proteins.fasta for Genebank submission using the map_fasta_ids script. It seems to work correctly for the major of gene models, except to those ones having the below warning message : > > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.3-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-snap-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1710-augustus-gene-0.4-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.1-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.2-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.0-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.5-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-augustus-gene-0.6-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.15-mRNA-1 > WARNING: No mapping available for maker-scaffold_1734-snap-gene-0.16-mRNA-1 > > Looking into the maker.gff file, these gene names are missing and may be replaced by other ones which differ by the numbers following the gene predictor. > > I wounder if you can explain me the reason of these warning message and how to resolve it. > > Thank you , > > Best, > Amine > _______________________________________________ > maker-devel mailing list > maker-devel at box290.bluehost.com > http://box290.bluehost.com/mailman/listinfo/maker-devel_yandell-lab.org > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 20 04:51:11 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 20 Dec 2016 05:51:11 -0600 Subject: [maker-devel] Greetings Message-ID: <003701d25abb$0194b4fd$e0486599@jlbtl> Dear maker-devel, We are looking for employees working remotely. My name is Herschel, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5500. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 05:25:47 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 23 Dec 2016 12:25:47 +0000 Subject: [maker-devel] Vacancy #627 Message-ID: <585D1E1F.9003.DEBA54@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Saundra, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2400-$5200. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Fri Dec 23 12:02:13 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: Fri, 23 Dec 2016 10:02:13 -0900 Subject: [maker-devel] From International Company Message-ID: <585D74B5.3080700@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Latoya, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2500-$5800. If you are interested in this offer, please visit Our Site d_healthHave a nice day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Sat Dec 24 08:58:35 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 24 Dec 2016 17:58:35 +0200 Subject: [maker-devel] hello Message-ID: <585E9FDB.4064.6342B6@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Phillip, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5900. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Mon Dec 26 14:14:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 03:14:19 +0600 Subject: [maker-devel] Salary [$1500 /week] Message-ID: <58618C9F.8417.43E8F8@maker-devel.yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Chuck, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2300-$5400. If you are interested in this offer, please visit Our Site d_healthBest regards! -------------- next part -------------- An HTML attachment was scrubbed... URL: From maker-devel at yandell-lab.org Tue Dec 27 09:47:19 2016 From: maker-devel at yandell-lab.org (maker-devel at yandell-lab.org) Date: 27 Dec 2016 20:47:19 +0400 Subject: [maker-devel] for CV Message-ID: <080050790.201612272057@yandell-lab.org> Dear maker-devel, We are looking for employees working remotely. My name is Leigh, I am the personnel manager of a large International company. Most of the work you can do from home, that is, at a distance. Salary is $2600-$5700. If you are interested in this offer, please visit Our Site d_healthGood day! -------------- next part -------------- An HTML attachment was scrubbed... URL: