-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-1.27' into release
- Loading branch information
Showing
4,233 changed files
with
71,734 additions
and
45,100 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "QSpec"] | ||
path = src/libs_3rdparty/QSpec | ||
url = https://github.com/ugeneunipro/QSpec.git | ||
branch = ugene |
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,99 @@ | ||
#@UGENE_WORKFLOW | ||
#The workflow does the following things: | ||
#1) Reads a set of Sanger sequencing reads from ABI files. | ||
#2) Trims ends of the reads by the quality value. | ||
#3) Filter the short trimmed reads. | ||
#4) Aligns the filtered trimmed reads to a reference sequence. | ||
# | ||
#You can change the workflow parameters: | ||
#1) Quality threshold for the trimming. | ||
#2) Minimum read length. If length of a trimmed read is less than the minimum value than the read is filtered. | ||
# | ||
#The output data are: | ||
#1) Multiple sequence alignment file. The first sequence of the alignment is the reference and other ones are the reads. | ||
#2) Annotated reference sequence file. The annotations are the aligned reads. | ||
|
||
|
||
|
||
workflow "Trim and map Sanger reads"{ | ||
|
||
SequenceQualityTrim { | ||
type:SequenceQualityTrim; | ||
name:"Sequence Quality Trimmer"; | ||
} | ||
read-sequence { | ||
type:read-sequence; | ||
name:"Read Sequence"; | ||
url-in { | ||
dataset:"Dataset 1"; | ||
} | ||
} | ||
align-to-reference { | ||
type:align-to-reference; | ||
name:"Map to Reference"; | ||
result-url:alignment.ugenedb; | ||
} | ||
|
||
.actor-bindings { | ||
read-sequence.out-sequence->SequenceQualityTrim.in-sequence | ||
SequenceQualityTrim.out-sequence->align-to-reference.in-sequence | ||
} | ||
|
||
read-sequence.sequence->SequenceQualityTrim.in-sequence.sequence | ||
SequenceQualityTrim.sequence->align-to-reference.in-sequence.sequence | ||
|
||
.meta { | ||
parameter-aliases { | ||
SequenceQualityTrim.both-ends { | ||
alias:trim-both-ends; | ||
} | ||
SequenceQualityTrim.len-id { | ||
alias:min-length; | ||
} | ||
SequenceQualityTrim.qual-id { | ||
alias:threshold; | ||
} | ||
read-sequence.url-in { | ||
alias:reads; | ||
} | ||
align-to-reference.identity { | ||
alias:min-identity; | ||
} | ||
align-to-reference.reference { | ||
alias:reference; | ||
} | ||
align-to-reference.result-url { | ||
alias:result-url; | ||
} | ||
} | ||
visual { | ||
SequenceQualityTrim { | ||
pos:"-705 -555"; | ||
style:ext; | ||
bg-color-ext:"0 128 128 64"; | ||
in-sequence.angle:180; | ||
out-sequence.angle:360; | ||
} | ||
align-to-reference { | ||
pos:"-405 -540"; | ||
style:ext; | ||
bg-color-ext:"0 128 128 64"; | ||
in-sequence.angle:180; | ||
out.angle:360; | ||
} | ||
read-sequence { | ||
pos:"-960 -540"; | ||
style:ext; | ||
bg-color-ext:"0 128 128 64"; | ||
out-sequence.angle:360; | ||
} | ||
SequenceQualityTrim.out-sequence->align-to-reference.in-sequence { | ||
text-pos:"-45 -43"; | ||
} | ||
read-sequence.out-sequence->SequenceQualityTrim.in-sequence { | ||
text-pos:"-33.8281 -27"; | ||
} | ||
} | ||
} | ||
} | ||
|
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
Oops, something went wrong.