comparison tophat2_wrapper.xml @ 7:4eb3c3beb9c7 draft

planemo upload commit 4ec9eb1570ea116d83f5464a786af6e14fb5b57d
author devteam
date Fri, 09 Oct 2015 15:48:52 -0400
parents 5c5517d2a9e9
children 758594ed0364
comparison
equal deleted inserted replaced
6:6202ec8aab61 7:4eb3c3beb9c7
1 <tool id="tophat2" name="Tophat" version="0.9"> 1 <tool id="tophat2" name="TopHat" version="0.9">
2 <!-- Wrapper compatible with Tophat version 2.0.0+ --> 2 <!-- Wrapper compatible with Tophat version 2.0.0+ -->
3 <description>Gapped-read mapper for RNA-seq data</description> 3 <description>Gapped-read mapper for RNA-seq data</description>
4 <version_command>tophat2 --version</version_command> 4 <version_command>tophat2 --version</version_command>
5 <requirements> 5 <requirements>
6 <requirement type="package" version="2.2.5">bowtie2</requirement> 6 <requirement type="package" version="2.2.5">bowtie2</requirement>
23 ## 23 ##
24 ## Run tophat. 24 ## Run tophat.
25 ## 25 ##
26 26
27 tophat2 27 tophat2
28 28
29 ## Change this to accommodate the number of threads you have available. 29 ## Change this to accommodate the number of threads you have available.
30 --num-threads \${GALAXY_SLOTS:-4} 30 --num-threads \${GALAXY_SLOTS:-4}
31 31
32 ## Set params. 32 ## Set params.
33 #if $params.settingsType == "full": 33 #if $params.settingsType == "full":
34 --read-mismatches $params.read_mismatches 34 --read-mismatches $params.read_mismatches
35 #if str($params.bowtie_n) == "Yes": 35 #if str($params.bowtie_n) == "Yes":
36 --bowtie-n 36 --bowtie-n
37 #end if 37 #end if
38 38
39 --read-edit-dist $params.read_edit_dist 39 --read-edit-dist $params.read_edit_dist
40 --read-realign-edit-dist $params.read_realign_edit_dist 40 --read-realign-edit-dist $params.read_realign_edit_dist
41 -a $params.anchor_length 41 -a $params.anchor_length
42 -m $params.splice_mismatches 42 -m $params.splice_mismatches
43 -i $params.min_intron_length 43 -i $params.min_intron_length
46 --min-segment-intron $params.min_segment_intron 46 --min-segment-intron $params.min_segment_intron
47 --max-segment-intron $params.max_segment_intron 47 --max-segment-intron $params.max_segment_intron
48 --segment-mismatches $params.seg_mismatches 48 --segment-mismatches $params.seg_mismatches
49 --segment-length $params.seg_length 49 --segment-length $params.seg_length
50 --library-type $params.library_type 50 --library-type $params.library_type
51 51
52 ## Indel search. 52 ## Indel search.
53 #if $params.indel_search.allow_indel_search == "Yes": 53 #if $params.indel_search.allow_indel_search == "Yes":
54 ## --allow-indels 54 ## --allow-indels
55 --max-insertion-length $params.indel_search.max_insertion_length 55 --max-insertion-length $params.indel_search.max_insertion_length
56 --max-deletion-length $params.indel_search.max_deletion_length 56 --max-deletion-length $params.indel_search.max_deletion_length
76 --min-coverage-intron $params.coverage_search.min_coverage_intron 76 --min-coverage-intron $params.coverage_search.min_coverage_intron
77 --max-coverage-intron $params.coverage_search.max_coverage_intron 77 --max-coverage-intron $params.coverage_search.max_coverage_intron
78 #else: 78 #else:
79 --no-coverage-search 79 --no-coverage-search
80 #end if 80 #end if
81 81
82 #if str($params.microexon_search) == "Yes": 82 #if str($params.microexon_search) == "Yes":
83 --microexon-search 83 --microexon-search
84 #end if 84 #end if
85 85
86 #if $params.fusion_search.do_search == "Yes": 86 #if $params.fusion_search.do_search == "Yes":
87 --fusion-search 87 --fusion-search
88 --fusion-anchor-length $params.fusion_search.anchor_len 88 --fusion-anchor-length $params.fusion_search.anchor_len
89 --fusion-min-dist $params.fusion_search.min_dist 89 --fusion-min-dist $params.fusion_search.min_dist
90 --fusion-read-mismatches $params.fusion_search.read_mismatches 90 --fusion-read-mismatches $params.fusion_search.read_mismatches
91 --fusion-multireads $params.fusion_search.multireads 91 --fusion-multireads $params.fusion_search.multireads
92 --fusion-multipairs $params.fusion_search.multipairs 92 --fusion-multipairs $params.fusion_search.multipairs
93 --fusion-ignore-chromosomes "$params.fusion_search.ignore_chromosomes" 93 --fusion-ignore-chromosomes "$params.fusion_search.ignore_chromosomes"
94 #end if 94 #end if
95 95
96 #if $params.bowtie2_settings.b2_settings == "Yes": 96 #if $params.bowtie2_settings.b2_settings == "Yes":
97 #if $params.bowtie2_settings.preset.b2_preset == "Yes": 97 #if $params.bowtie2_settings.preset.b2_preset == "Yes":
98 --b2-$params.bowtie2_settings.preset.b2_preset_select 98 --b2-$params.bowtie2_settings.preset.b2_preset_select
99 #end if 99 #end if
100 #end if 100 #end if
101 101
102 #end if 102 #end if
103 103
104 ## Read group information. 104 ## Read group information.
105 #if $readGroup.specReadGroup == "yes" 105 #if $readGroup.specReadGroup == "yes"
106 --rg-id "$readGroup.rgid" 106 --rg-id "$readGroup.rgid"
111 111
112 ## Set index path, inputs and parameters specific to paired data. 112 ## Set index path, inputs and parameters specific to paired data.
113 #if $singlePaired.sPaired != "single" 113 #if $singlePaired.sPaired != "single"
114 -r $singlePaired.mate_inner_distance 114 -r $singlePaired.mate_inner_distance
115 --mate-std-dev=$singlePaired.mate_std_dev 115 --mate-std-dev=$singlePaired.mate_std_dev
116 116
117 #if str($singlePaired.report_discordant_pairs) == "No": 117 #if str($singlePaired.report_discordant_pairs) == "No":
118 --no-discordant 118 --no-discordant
119 #end if 119 #end if
120 120
121 #if $singlePaired.sPaired == "paired" 121 #if $singlePaired.sPaired == "paired"
125 #end if 125 #end if
126 #else 126 #else
127 ${index_path} "$singlePaired.input1" 127 ${index_path} "$singlePaired.input1"
128 #end if 128 #end if
129 </command> 129 </command>
130 130
131 <inputs> 131 <inputs>
132 <conditional name="singlePaired"> 132 <conditional name="singlePaired">
133 <param name="sPaired" type="select" label="Is this single-end or paired-end data?"> 133 <param name="sPaired" type="select" label="Is this single-end or paired-end data?">
134 <option value="single">Single-end</option> 134 <option value="single">Single-end</option>
135 <option value="paired">Paired-end (as individual datasets)</option> 135 <option value="paired">Paired-end (as individual datasets)</option>
201 <param name="min_coverage_intron" type="integer" value="50" label="Minimum intron length that may be found during coverage search" help="--min-coverage-intron; The minimum intron length that may be found during coverage search. The default is 50."/> 201 <param name="min_coverage_intron" type="integer" value="50" label="Minimum intron length that may be found during coverage search" help="--min-coverage-intron; The minimum intron length that may be found during coverage search. The default is 50."/>
202 <param name="max_coverage_intron" type="integer" value="20000" label="Maximum intron length that may be found during coverage search" help="--max-coverage-intron; The maximum intron length that may be found during coverage search. The default is 20000."/> 202 <param name="max_coverage_intron" type="integer" value="20000" label="Maximum intron length that may be found during coverage search" help="--max-coverage-intron; The maximum intron length that may be found during coverage search. The default is 20000."/>
203 </when> 203 </when>
204 <when value="No" /> 204 <when value="No" />
205 </conditional> 205 </conditional>
206 206
207 <!-- Microexon search params --> 207 <!-- Microexon search params -->
208 <param name="microexon_search" type="select" label="Use Microexon Search" help="--microexon-search; With this option, the pipeline will attempt to find alignments incident to microexons. Works only for reads 50bp or longer."> 208 <param name="microexon_search" type="select" label="Use Microexon Search" help="--microexon-search; With this option, the pipeline will attempt to find alignments incident to microexons. Works only for reads 50bp or longer.">
209 <option value="No">No</option> 209 <option value="No">No</option>
210 <option value="Yes">Yes</option> 210 <option value="Yes">Yes</option>
211 </param> 211 </param>
212 212
213 <!-- Fusion mapping. --> 213 <!-- Fusion mapping. -->
214 <conditional name="fusion_search"> 214 <conditional name="fusion_search">
215 <param name="do_search" type="select" label="Do Fusion Search" help="Reads can be aligned to potential fusion transcripts if the --fusion-search option is specified. The fusion alignments are reported in SAM format using custom fields XF and XP (see the output format) and some additional information about fusions will be reported (see fusions.out). Once mapping is done, you can run tophat-fusion-post to filter out fusion transcripts (see the TopHat-Fusion website for more details)."> 215 <param name="do_search" type="select" label="Do Fusion Search" help="Reads can be aligned to potential fusion transcripts if the --fusion-search option is specified. The fusion alignments are reported in SAM format using custom fields XF and XP (see the output format) and some additional information about fusions will be reported (see fusions.out). Once mapping is done, you can run tophat-fusion-post to filter out fusion transcripts (see the TopHat-Fusion website for more details).">
216 <option selected="true" value="No">No</option> 216 <option selected="true" value="No">No</option>
217 <option value="Yes">Yes</option> 217 <option value="Yes">Yes</option>
224 <param name="multireads" type="integer" value="2" label="Multireads" help="--fusion-multireads; Reads that map to more than this many places will be ignored. It may be possible that a fusion is supported by reads (or pairs) that map to multiple places. The default is 2."/> 224 <param name="multireads" type="integer" value="2" label="Multireads" help="--fusion-multireads; Reads that map to more than this many places will be ignored. It may be possible that a fusion is supported by reads (or pairs) that map to multiple places. The default is 2."/>
225 <param name="multipairs" type="integer" value="2" label="Multipairs" help="--fusion-multipairs; Pairs that map to more than this many places will be ignored. The default is 2."/> 225 <param name="multipairs" type="integer" value="2" label="Multipairs" help="--fusion-multipairs; Pairs that map to more than this many places will be ignored. The default is 2."/>
226 <param name="ignore_chromosomes" type="text" value='' label="--fusion-ignore-chromosomes; Ignore some chromosomes such as chrM when detecting fusion break points"/> 226 <param name="ignore_chromosomes" type="text" value='' label="--fusion-ignore-chromosomes; Ignore some chromosomes such as chrM when detecting fusion break points"/>
227 </when> 227 </when>
228 </conditional> 228 </conditional>
229 229
230 <!-- Bowtie2 settings. --> 230 <!-- Bowtie2 settings. -->
231 <conditional name="bowtie2_settings"> 231 <conditional name="bowtie2_settings">
232 <param name="b2_settings" type="select" label="Set Bowtie2 settings"> 232 <param name="b2_settings" type="select" label="Set Bowtie2 settings">
233 <option selected="true" value="No">No</option> 233 <option selected="true" value="No">No</option>
234 <option value="Yes">Yes</option> 234 <option value="Yes">Yes</option>
259 <param name="specReadGroup" type="select" label="Specify read group?"> 259 <param name="specReadGroup" type="select" label="Specify read group?">
260 <option value="yes">Yes</option> 260 <option value="yes">Yes</option>
261 <option value="no" selected="True">No</option> 261 <option value="no" selected="True">No</option>
262 </param> 262 </param>
263 <when value="yes"> 263 <when value="yes">
264 <param name="rgid" type="text" size="25" label="Read group identifier (ID). Each @RG line must have a unique ID. The value of ID is used in the RG tags of alignment records. Must be unique among all read groups in header section." help="Required if RG specified. Read group IDs may be modified when merging SAM files in order to handle collisions." /> 264 <param name="rgid" type="text" label="Read group identifier (ID). Each @RG line must have a unique ID. The value of ID is used in the RG tags of alignment records. Must be unique among all read groups in header section." help="Required if RG specified. Read group IDs may be modified when merging SAM files in order to handle collisions." />
265 <param name="rglb" type="text" size="25" label="Library name (LB)" help="Required if RG specified" /> 265 <param name="rglb" type="text" label="Library name (LB)" help="Required if RG specified" />
266 <param name="rgpl" type="text" size="25" label="Platform/technology used to produce the reads (PL)" help="Required if RG specified. Valid values : CAPILLARY, LS454, ILLUMINA, SOLID, HELICOS, IONTORRENT and PACBIO" /> 266 <param name="rgpl" type="text" label="Platform/technology used to produce the reads (PL)" help="Required if RG specified. Valid values : CAPILLARY, LS454, ILLUMINA, SOLID, HELICOS, IONTORRENT and PACBIO" />
267 <param name="rgsm" type="text" size="25" label="Sample (SM)" help="Required if RG specified. Use pool name where a pool is being sequenced" /> 267 <param name="rgsm" type="text" label="Sample (SM)" help="Required if RG specified. Use pool name where a pool is being sequenced" />
268 </when> 268 </when>
269 <when value="no" /> 269 <when value="no" />
270 </conditional> <!-- readGroup --> 270 </conditional> <!-- readGroup -->
271 </inputs> 271 </inputs>
272 272
382 <output name="junctions" file="tophat2_out2j.bed" /> 382 <output name="junctions" file="tophat2_out2j.bed" />
383 <output name="accepted_hits" file="tophat_out2h.bam" compare="sim_size" /> 383 <output name="accepted_hits" file="tophat_out2h.bam" compare="sim_size" />
384 </test> 384 </test>
385 <!-- Test base-space single-end reads with user-supplied reference fasta and full parameters --> 385 <!-- Test base-space single-end reads with user-supplied reference fasta and full parameters -->
386 <test> 386 <test>
387 <!-- Tophat commands: 387 <!-- TopHat commands:
388 bowtie2-build -f test-data/tophat_in1.fasta tophat_in1 388 bowtie2-build -f test-data/tophat_in1.fasta tophat_in1
389 tophat2 -o tmp_dir -p 1 -a 8 -m 0 -i 70 -I 500000 -g 40 +coverage-search +min-coverage-intron 50 +max-coverage-intro 20000 +segment-mismatches 2 +segment-length 25 +microexon-search tophat_in1 test-data/tophat_in2.fastqsanger 389 tophat2 -o tmp_dir -p 1 -a 8 -m 0 -i 70 -I 500000 -g 40 +coverage-search +min-coverage-intron 50 +max-coverage-intro 20000 +segment-mismatches 2 +segment-length 25 +microexon-search tophat_in1 test-data/tophat_in2.fastqsanger
390 Replace the + with double-dash 390 Replace the + with double-dash
391 Rename the files in tmp_dir appropriately 391 Rename the files in tmp_dir appropriately
392 --> 392 -->
460 <!-- TopHat commands: 460 <!-- TopHat commands:
461 tophat2 -o tmp_dir -r 20 -p 1 -a 8 -m 0 -i 70 -I 500000 -g 40 +coverage-search +min-coverage-intron 50 +max-coverage-intro 20000 +segment-mismatches 2 +segment-length 25 +microexon-search +report_discordant_pairs tophat_in1 test-data/tophat_in2.fastqsanger test-data/tophat_in3.fastqsanger 461 tophat2 -o tmp_dir -r 20 -p 1 -a 8 -m 0 -i 70 -I 500000 -g 40 +coverage-search +min-coverage-intron 50 +max-coverage-intro 20000 +segment-mismatches 2 +segment-length 25 +microexon-search +report_discordant_pairs tophat_in1 test-data/tophat_in2.fastqsanger test-data/tophat_in3.fastqsanger
462 Replace the + with double-dash 462 Replace the + with double-dash
463 Rename the files in tmp_dir appropriately 463 Rename the files in tmp_dir appropriately
464 --> 464 -->
465 <conditional name="singlePaired"> 465 <conditional name="singlePaired">
466 <param name="sPaired" value="paired"/> 466 <param name="sPaired" value="paired"/>
467 <param name="input1" ftype="fastqsanger" value="tophat_in2.fastqsanger"/> 467 <param name="input1" ftype="fastqsanger" value="tophat_in2.fastqsanger"/>
468 <param name="input2" ftype="fastqsanger" value="tophat_in3.fastqsanger"/> 468 <param name="input2" ftype="fastqsanger" value="tophat_in3.fastqsanger"/>
469 <param name="mate_inner_distance" value="20"/> 469 <param name="mate_inner_distance" value="20"/>
470 <param name="report_discordant_pairs" value="Yes" /> 470 <param name="report_discordant_pairs" value="Yes" />
510 <conditional name="bowtie2_settings"> 510 <conditional name="bowtie2_settings">
511 <param name="b2_settings" value="No" /> 511 <param name="b2_settings" value="No" />
512 </conditional> 512 </conditional>
513 <!-- Fusion search params --> 513 <!-- Fusion search params -->
514 <conditional name="fusion_search"> 514 <conditional name="fusion_search">
515 <param name="do_search" value="Yes" /> 515 <param name="do_search" value="Yes" />
516 <param name="anchor_len" value="21" /> 516 <param name="anchor_len" value="21" />
517 <param name="min_dist" value="10000021" /> 517 <param name="min_dist" value="10000021" />
518 <param name="read_mismatches" value="3" /> 518 <param name="read_mismatches" value="3" />
519 <param name="multireads" value="4" /> 519 <param name="multireads" value="4" />
520 <param name="multipairs" value="5" /> 520 <param name="multipairs" value="5" />
527 <output name="junctions" file="tophat2_out4j.bed" /> 527 <output name="junctions" file="tophat2_out4j.bed" />
528 <output name="accepted_hits" file="tophat_out4h.bam" compare="sim_size" /> 528 <output name="accepted_hits" file="tophat_out4h.bam" compare="sim_size" />
529 </test> 529 </test>
530 </tests> 530 </tests>
531 <help> 531 <help>
532 **Tophat Overview** 532 **TopHat Overview**
533 533
534 TopHat_ is a fast splice junction mapper for RNA-Seq reads. It aligns RNA-Seq reads to mammalian-sized genomes using the ultra high-throughput short read aligner Bowtie(2), and then analyzes the mapping results to identify splice junctions between exons. Please cite: Kim D, Pertea G, Trapnell C, Pimentel H, Kelley R, and Salzberg SL. TopHat2: accurate alignment 534 TopHat_ is a fast splice junction mapper for RNA-Seq reads. It aligns RNA-Seq reads to mammalian-sized genomes using the ultra high-throughput short read aligner Bowtie(2), and then analyzes the mapping results to identify splice junctions between exons.
535 of transcriptomes in the presence of insertions, deletions and gene fusions. Genome Biol 14:R36, 2013. 535
536 536 .. _TopHat: http://ccb.jhu.edu/software/tophat/
537 .. _Tophat: http://ccb.jhu.edu/software/tophat/ 537
538
539 ------ 538 ------
540 539
541 **Know what you are doing** 540 **Know what you are doing**
542 541
543 .. class:: warningmark 542 .. class:: warningmark
548 547
549 ------ 548 ------
550 549
551 **Input formats** 550 **Input formats**
552 551
553 Tophat accepts files in Sanger FASTQ format. Use the FASTQ Groomer to prepare your files. 552 TopHat accepts files in Sanger FASTQ format. Use the FASTQ Groomer to prepare your files.
554 553
555 ------ 554 ------
556 555
557 **Outputs** 556 **Outputs**
558 557
559 Tophat produces two output files: 558 TopHat produces two output files:
560 559
561 - junctions -- A UCSC BED_ track of junctions reported by TopHat. Each junction consists of two connected BED blocks, where each block is as long as the maximal overhang of any read spanning the junction. The score is the number of alignments spanning the junction. 560 - junctions -- A UCSC BED_ track of junctions reported by TopHat. Each junction consists of two connected BED blocks, where each block is as long as the maximal overhang of any read spanning the junction. The score is the number of alignments spanning the junction.
562 - accepted_hits -- A list of read alignments in BAM_ format. 561 - accepted_hits -- A list of read alignments in BAM_ format.
563 562
564 .. _BED: http://genome.ucsc.edu/FAQ/FAQformat.html#format1 563 .. _BED: http://genome.ucsc.edu/FAQ/FAQformat.html#format1
566 565
567 Two other possible outputs, depending on the options you choose, are insertions and deletions, both of which are in BED format. 566 Two other possible outputs, depending on the options you choose, are insertions and deletions, both of which are in BED format.
568 567
569 ------- 568 -------
570 569
571 **Tophat settings** 570 **TopHat settings**
572 571
573 All of the options have a default value. You can change any of them. Some of the options in Tophat have been implemented here. 572 All of the options have a default value. You can change any of them. Some of the options in TopHat have been implemented here.
574 573
575 ------ 574 ------
576 575
577 **Tophat parameter list** 576 **TopHat parameter list**
578 577
579 This is a list of implemented Tophat options:: 578 This is a list of implemented TopHat options::
580 579
581 -r This is the expected (mean) inner distance between mate pairs. For, example, for paired end runs with fragments 580 -r This is the expected (mean) inner distance between mate pairs. For, example, for paired end runs with fragments
582 selected at 300bp, where each end is 50bp, you should set -r to be 200. There is no default, and this parameter 581 selected at 300bp, where each end is 50bp, you should set -r to be 200. There is no default, and this parameter
583 is required for paired end runs. 582 is required for paired end runs.
584 --mate-std-dev INT The standard deviation for the distribution on inner distances between mate pairs. The default is 20bp. 583 --mate-std-dev INT The standard deviation for the distribution on inner distances between mate pairs. The default is 20bp.
585 -a/--min-anchor-length INT The "anchor length". TopHat will report junctions spanned by reads with at least this many bases on each side of the junction. Note that individual spliced 584 -a/--min-anchor-length INT The "anchor length". TopHat will report junctions spanned by reads with at least this many bases on each side of the junction. Note that individual spliced
586 alignments may span a junction with fewer than this many bases on one side. However, every junction involved in spliced alignments is supported by at least one 585 alignments may span a junction with fewer than this many bases on one side. However, every junction involved in spliced alignments is supported by at least one
587 read with this many bases on each side. This must be at least 3 and the default is 8. 586 read with this many bases on each side. This must be at least 3 and the default is 8.
588 -m/--splice-mismatches INT The maximum number of mismatches that may appear in the "anchor" region of a spliced alignment. The default is 0. 587 -m/--splice-mismatches INT The maximum number of mismatches that may appear in the "anchor" region of a spliced alignment. The default is 0.
589 -i/--min-intron-length INT The minimum intron length. TopHat will ignore donor/acceptor pairs closer than this many bases apart. The default is 70. 588 -i/--min-intron-length INT The minimum intron length. TopHat will ignore donor/acceptor pairs closer than this many bases apart. The default is 70.
590 -I/--max-intron-length INT The maximum intron length. When searching for junctions ab initio, TopHat will ignore donor/acceptor pairs farther than this many bases apart, except when such a pair is supported by a split segment alignment of a long read. The default is 500000. 589 -I/--max-intron-length INT The maximum intron length. When searching for junctions ab initio, TopHat will ignore donor/acceptor pairs farther than this many bases apart, except when such a pair is supported by a split segment alignment of a long read. The default is 500000.
591 -g/--max-multihits INT Instructs TopHat to allow up to this many alignments to the reference for a given read, and suppresses all alignments for reads with more than this many 590 -g/--max-multihits INT Instructs TopHat to allow up to this many alignments to the reference for a given read, and suppresses all alignments for reads with more than this many
592 alignments. The default is 40. 591 alignments. The default is 40.
593 -G/--GTF [GTF 2.2 file] Supply TopHat with a list of gene model annotations. TopHat will use the exon records in this file to build a set of known splice junctions for each gene, and will attempt to align reads to these junctions even if they would not normally be covered by the initial mapping. 592 -G/--GTF [GTF 2.2 file] Supply TopHat with a list of gene model annotations. TopHat will use the exon records in this file to build a set of known splice junctions for each gene, and will attempt to align reads to these junctions even if they would not normally be covered by the initial mapping.
594 -j/--raw-juncs [juncs file] Supply TopHat with a list of raw junctions. Junctions are specified one per line, in a tab-delimited format. Records look like: [chrom] [left] [right] [+/-], left and right are zero-based coordinates, and specify the last character of the left sequenced to be spliced to the first character of the right sequence, inclusive. 593 -j/--raw-juncs [juncs file] Supply TopHat with a list of raw junctions. Junctions are specified one per line, in a tab-delimited format. Records look like: [chrom] [left] [right] [+/-], left and right are zero-based coordinates, and specify the last character of the left sequenced to be spliced to the first character of the right sequence, inclusive.
595 -no-novel-juncs Only look for junctions indicated in the supplied GFF file. (ignored without -G) 594 -no-novel-juncs Only look for junctions indicated in the supplied GFF file. (ignored without -G)
596 --no-coverage-search Disables the coverage based search for junctions. 595 --no-coverage-search Disables the coverage based search for junctions.