-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle different databases for the different BLAST applications
- Loading branch information
Showing
6 changed files
with
134 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"email_for_eutils": "", // This email address will be used for EUtils queries | ||
"entrez_retmax": "", // Maximum number of Entrez records downloaded | ||
"remote_blast_app": "", // blastp, blastn, blastx, tblastn, tblastx | ||
"remote_blast_format": "", // HTML, Text, ASN.1, XML | ||
"remote_blast_db": "" // nr, refseq, swissprot, pat, month, pdb, env_nr | ||
"email_for_eutils": "", // This email address will be used for EUtils queries | ||
"entrez_retmax": "1000", // Maximum number of Entrez records downloaded | ||
"remote_blast_app": "blastp", // blastp, blastn, blastx, tblastn, tblastx | ||
"remote_blast_format": "Text", // HTML, Text, ASN.1, XML | ||
"remote_blast_db": "nr" // Will depend on the BLAST application | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,87 @@ | ||
{ | ||
"blastn": [ | ||
"alu_repeats", | ||
"Bacteria and Archaea", | ||
"chromosome", | ||
"dbsts", | ||
"est", | ||
"gss", | ||
"HTGS", | ||
"nr/nt", | ||
"pat", | ||
"pdb", | ||
"refseq_gene", | ||
"refseq_genomic", | ||
"refseq_representative_genomes", | ||
"refseq_rna", | ||
"SRA", | ||
"TSA", | ||
"wgs" | ||
"blast_formats": [ | ||
"HTML", | ||
"Text", | ||
"ASN.1", | ||
"XML" | ||
], | ||
"blastp": [ | ||
"env_nr", | ||
"landmark" | ||
"nr", | ||
"pat", | ||
"pdb", | ||
"refseq_protein", | ||
"swissprot", | ||
"tsa_nr", | ||
], | ||
"blastx": [ | ||
"env_nr", | ||
"landmark" | ||
"nr", | ||
"pat", | ||
"pdb", | ||
"refseq_protein", | ||
"swissprot", | ||
"tsa_nr", | ||
], | ||
"tblastn": [ | ||
"alu_repeats", | ||
"Bacteria and Archaea", | ||
"chromosome", | ||
"dbsts", | ||
"est", | ||
"gss", | ||
"HTGS", | ||
"nr/nt", | ||
"pat", | ||
"pdb", | ||
"refseq_gene", | ||
"refseq_genomic", | ||
"refseq_representative_genomes", | ||
"refseq_rna", | ||
"SRA", | ||
"TSA", | ||
"wgs" | ||
], | ||
"tblastx": [ | ||
"alu_repeats", | ||
"Bacteria and Archaea", | ||
"chromosome", | ||
"dbsts", | ||
"est", | ||
"gss", | ||
"HTGS", | ||
"nr/nt", | ||
"pat", | ||
"pdb", | ||
"refseq_gene", | ||
"refseq_genomic", | ||
"refseq_representative_genomes", | ||
"refseq_rna", | ||
"SRA", | ||
"TSA", | ||
"wgs" | ||
] | ||
"blast_info": { | ||
"blastn": [ | ||
"alu_repeats", | ||
"Bacteria and Archaea", | ||
"chromosome", | ||
"dbsts", | ||
"est", | ||
"gss", | ||
"HTGS", | ||
"nt", | ||
"pat", | ||
"pdb", | ||
"refseq_gene", | ||
"refseq_genomic", | ||
"refseq_representative_genomes", | ||
"refseq_rna", | ||
"SRA", | ||
"TSA", | ||
"wgs" | ||
], | ||
"blastp": [ | ||
"env_nr", | ||
"landmark", | ||
"nr", | ||
"pat", | ||
"pdb", | ||
"refseq_protein", | ||
"swissprot", | ||
"tsa_nr" | ||
], | ||
"blastx": [ | ||
"env_nr", | ||
"landmark", | ||
"nr", | ||
"pat", | ||
"pdb", | ||
"refseq_protein", | ||
"swissprot", | ||
"tsa_nr" | ||
], | ||
"tblastn": [ | ||
"alu_repeats", | ||
"Bacteria and Archaea", | ||
"chromosome", | ||
"dbsts", | ||
"est", | ||
"gss", | ||
"HTGS", | ||
"nt", | ||
"pat", | ||
"pdb", | ||
"refseq_gene", | ||
"refseq_genomic", | ||
"refseq_representative_genomes", | ||
"refseq_rna", | ||
"SRA", | ||
"TSA", | ||
"wgs" | ||
], | ||
"tblastx": [ | ||
"alu_repeats", | ||
"Bacteria and Archaea", | ||
"chromosome", | ||
"dbsts", | ||
"est", | ||
"gss", | ||
"HTGS", | ||
"nt", | ||
"pat", | ||
"pdb", | ||
"refseq_gene", | ||
"refseq_genomic", | ||
"refseq_representative_genomes", | ||
"refseq_rna", | ||
"SRA", | ||
"TSA", | ||
"wgs" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters