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
500a24a6
Commit
500a24a6
authored
4 months ago
by
Niko (Nikolaos) Papadopoulos
Browse files
Options
Downloads
Patches
Plain Diff
sorted out GFF creation
parent
5d39c13d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
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
+14
-13
14 additions, 13 deletions
08-submission/gff-01-compose_gff.sh
with
14 additions
and
13 deletions
08-submission/gff-01-compose_gff.sh
+
14
−
13
View file @
500a24a6
...
...
@@ -2,22 +2,23 @@
# compose the GFF3 file to prepare for ENA submission
#
first gather the various input sources
#
set base and result directory
BASE
=
/lisc/scratch/zoology/pycnogonum/genome/draft/annot_merge
RESULT
=
/lisc/scratch/zoology/pycnogonum/genome/submission
# first gather the various input sources
ISOSEQ
=
$BASE
/isoseq.gff
BRAKER_R1
=
$BASE
/braker.gff
BRAKER_R2
=
$BASE
/braker2_unique_renamed_nocodon_intron.gff3
DENOVO
=
$BASE
/overlap_translated.gff3
DENOVO
=
$BASE
/denovo_txomes/overlap_translated.gff3
TRNASCAN
=
$BASE
/../trnascan/trnascan.gff3
# navigate to output directory
cd
$RESULT
||
exit
ls
ISOSEQ
ls
BRAKER_R1
ls
BRAKER_R2
ls
DENOVO
# merge the GFF3 files
cat
$ISOSEQ
$BRAKER_R1
$BRAKER_R2
$DENOVO
$TRNASCAN
>
merged.gff3
# cat isoseq.gff > merged.gff3
# cat braker.gff >> merged.gff3
# cat braker2_unique_renamed_nocodon_intron.gff3 >> merged.gff3
# cat denovo_txomes/overlap_translated.gff3 >> merged.gff3
# cat ../trnascan/trnascan.gff3 >> merged.gff3
# module load genometools/
# gt gff3 -tidy -retainids -o merged_sorted.gff3 -force merged.gff3
\ No newline at end of file
# sort the GFF3 file
module load genometools/
gt gff3
-tidy
-retainids
-o
merged_sorted.gff3
-force
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