Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plit-genome
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zoology
plit-genome
Commits
1448fec7
Commit
1448fec7
authored
5 months ago
by
Niko (Nikolaos) Papadopoulos
Browse files
Options
Downloads
Patches
Plain Diff
manually replacing erroneous gene model
parent
998c1c3d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
08-submission/gff-01-compose_gff.sh
+11
-2
11 additions, 2 deletions
08-submission/gff-01-compose_gff.sh
with
11 additions
and
2 deletions
08-submission/gff-01-compose_gff.sh
+
11
−
2
View file @
1448fec7
...
...
@@ -2,6 +2,9 @@
# compose the GFF3 file to prepare for ENA submission
module load conda
conda activate agat-1.4.1
# set base and result directory
BASE
=
/lisc/scratch/zoology/pycnogonum/genome/draft/annot_merge
RESULT
=
/lisc/scratch/zoology/pycnogonum/genome/submission
...
...
@@ -12,12 +15,18 @@ BRAKER_R1=$BASE/braker.gff
BRAKER_R2
=
$BASE
/braker2_unique_renamed_nocodon_intron.gff3
DENOVO
=
$BASE
/denovo_txomes/overlap_translated.gff3
TRNASCAN
=
$BASE
/../trnascan/trnascan.gff3
# Also add the g8324 gene as predicted by BRAKER3; manual inspection has determined that it should
# replace gene models PB.7650, at_DN0411, and at_DN0412
g8324
=
$BASE
/g8324.gff3
# navigate to output directory
cd
$RESULT
||
exit
# merge the GFF3 files
cat
$ISOSEQ
$BRAKER_R1
$BRAKER_R2
$DENOVO
$TRNASCAN
>
merged.gff3
cat
$ISOSEQ
$BRAKER_R1
$BRAKER_R2
$DENOVO
$TRNASCAN
$g8324
>
merged_mix.gff3
# remove the gene models for the 3 genes that are replaced by g8324
{
echo
"PB.7650"
;
echo
"at_DN0411"
;
echo
"at_DN0412"
;
}
>
kill_list
agat_sp_filter_feature_from_kill_list.pl
--gff
merged_mix.gff3
--kill_list
kill_list
-p
gene
-o
merged.gff3
# rename pseudochromosomes 54-59 to 52-57 to reflect decontamination
sed
-i
's/pseudochrom_54/pseudochrom_52/g'
merged.gff3
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment