-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
1,619 additions
and
666 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
/.coverage | ||
/docs/_build | ||
/data | ||
/bin/seqpoetc |
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.wy-table-responsive table td, .wy-table-responsive table th { | ||
white-space: normal; | ||
} | ||
|
||
.wy-table-responsive { | ||
margin-bottom: 24px; | ||
max-width: 100%; | ||
overflow: visible; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{# layout.html #} | ||
{% extends "!layout.html" %} | ||
{% set css_files = css_files + ['_static/style.css'] %} |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Command line arguments | ||
====================== | ||
|
||
:: | ||
|
||
seqpoet [options] genomedir probe | ||
|
||
Mandatory arguments | ||
------------------- | ||
|
||
============= ======================================================= | ||
genomedir directory containing the genome files to use (FASTA or | ||
GenBank format) or a single GenBank or FASTA file | ||
probe file containing either a single sequence (probe) or a | ||
pair of sequences (primer pair; one sequence per line) | ||
============= ======================================================= | ||
|
||
Optional arguments | ||
------------------ | ||
|
||
-h, --help show this help message and exit | ||
--pcr only perform in silico PCR. Requires that the probe | ||
file contains a primer pair (default: perform operon | ||
extraction) | ||
-m int, --mismatches int | ||
the maximum number of mismatches allowed when aligning | ||
probe/primer to the genome (default: 2) | ||
-d int, --max-distance int | ||
the maximum intergenic distance allowed when | ||
assembling operons (default: 500) | ||
--min-product int minimum PCR product length to consider (default: 0) | ||
--max-product int maximum PCR product length to consider (default: 3000) | ||
--no-revcomp don't reverse complement results on the minus strand | ||
(default: do reverse complementation) | ||
--downstream int extend probe/primer match int bases downstream for | ||
operon finding (default: 0) | ||
--upstream int extend probe/primer match int bases upstream for | ||
operon finding (default: 0) | ||
-o file, --out file file for output (default: stdout) | ||
--version print version and exit |
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
Oops, something went wrong.