-
Notifications
You must be signed in to change notification settings - Fork 58
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
3 changed files
with
51 additions
and
4 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
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,46 @@ | ||
# agat_sp_flag_short_introns_ebi.pl | ||
|
||
## DESCRIPTION | ||
|
||
The script flags records that contain short introns (default 10bp) within coding sequences (CDS) with the <pseudo> attribute and changes the <product> attribute into a <note> attribute. | ||
This is useful for avoiding ERROR messages when submitting data to the EBI. | ||
(Typical EBI error message: ERROR: Intron usually expected to be at least 10 nt long. Please check the accuracy.) | ||
|
||
|
||
## SYNOPSIS | ||
|
||
``` | ||
agat_sp_flag_short_introns_ebi.pl --gff infile --out outfile | ||
agat_sp_flag_short_introns_ebi.pl --help | ||
``` | ||
|
||
## OPTIONS | ||
|
||
- **--gff**, **-f**, **--ref** or **-reffile** | ||
|
||
Input GTF/GFF file. | ||
|
||
- **--intron_size** or **-i** | ||
|
||
Minimum intron size, default 10. All genes with an intron < of this size will be | ||
flagged with the pseudo attribute (the value will be the size of the smallest | ||
intron found within the incriminated gene) | ||
|
||
- **--out**, **--output** or **-o** | ||
|
||
Output gff3 file where the result will be printed. | ||
|
||
- **-v** | ||
|
||
Bolean. Verbose for debugging purpose. | ||
|
||
- **-c** or **--config** | ||
|
||
String - Input agat config file. By default AGAT takes as input agat_config.yaml file from the working directory if any, | ||
otherwise it takes the orignal agat_config.yaml shipped with AGAT. To get the agat_config.yaml locally type: "agat config --expose". | ||
The --config option gives you the possibility to use your own AGAT config file (located elsewhere or named differently). | ||
|
||
- **--help** or **-h** | ||
|
||
Display this helpful text. | ||
|