You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Allow genome size to be given in scientific notation
* Update genome size parameter info
* Bump up version numbers
* Don't require genome_size argument
* Calculate dist using only read lengths > min_size
* Use 2 * cut length as lower limit for dist
* Add time commands to long-to-linked and minimap2 steps for tigmint-long
* use 1000 as lower bound for dist
* create fastq file for cut reads
* simplify get_genome_size
* create argument for dist read length percentile
* v1.2.2
* update pipeline flow chart
* change string formatting
* change expected long-to-linked outputs to fastq
* new expected output for long-to-linked
* Use p50 for dist calculation
* Update tests to use lower-bounded read length p50 as auto dist
* Don't upgrade pip installations
* Use python3.8 and add upgrade command back
* Fix python paths
* Update docstring
Co-authored-by: Lauren Coombe <lauren.e.coombe@gmail.com>
To run Tigmint with long reads in fasta or fastq format (`myreads.fa.gz` or `myreads.fq.gz`) on the draft assembly `myassembly.fa`:
121
+
To run Tigmint with long reads in fasta or fastq format (`myreads.fa.gz` or `myreads.fq.gz`) on the draft assembly `myassembly.fa` for an organism with a genome size of gsize:
-`minimap2 map-ont` is used to align long reads from the Oxford Nanopore Technologies (ONT) platform, which is the default input for Tigmint. To use PacBio long reads specify the parameter `longmap=pb`
+`draft`: Name of the draft assembly, `myassembly.fa`
147
147
+`reads`: Name of the reads, `myreads.fq.gz`
148
-
+`G`: Haploid genome size of the draft assembly organism. Used to calculate `span` parameter automatically
148
+
+`G`: Haploid genome size of the draft assembly organism. Used to calculate `span` parameter automatically. Can be given as an integer or in scientific notation (e.g. '3e9' for human)
149
149
+`span=20`: Number of spanning molecules threshold. Set `span=auto` to automatically select span parameter (currently only recommended for `tigmint-long`)
150
150
+`cut=500`: Cut length for long reads (`tigmint-long` only)
151
151
+`longmap=ont`: Long read platform; `ont` for Oxford Nanopore Technologies (ONT) long reads, `pb` for PacBio long reads (`tigmint-long` only)
0 commit comments