biologger / speciesprimer

The SpeciesPrimer pipeline is intended to help researchers finding specific primer pairs for the detection and quantification of bacterial species in complex ecosystems.
GNU General Public License v3.0
40 stars 19 forks source link

List of good target binding primers #9

Open marcomeola opened 3 years ago

marcomeola commented 3 years ago

It would be great if the list of good target binding primers would be in the output even if there are 0 primer pairs passing non-target PCR check.

In the best case it would also be nice to get a table with how many and to which non-target species match the good target binding primers.

biologger commented 3 years ago

It is possible to get this information from the results of the primer QC step using MFEprimer.

In the results files the FpID and RpID are the ids of the primers (forward and reverse).

The HitID of the sequence in the database with a possible amplicon includes the database accession and the range taken from the original sequence (BLAST database) for the primer QC database.

Example: NZ_CADIKI010000002.1_85816_89816

More information about the sequence e.g. the sequence title can be extracted from the BLAST DB using blastdbcmd.

$ blastdbcmd -db /blastdb/ref_prok_rep_genomes -entry NZ_CADIKI010000002.1 -outfmt %t

marcomeola commented 3 years ago

Thank you!