Skip to content
Snippets Groups Projects
Commit 500a24a6 authored by Niko (Nikolaos) Papadopoulos's avatar Niko (Nikolaos) Papadopoulos
Browse files

sorted out GFF creation

parent 5d39c13d
Branches
Tags
No related merge requests found
...@@ -2,22 +2,23 @@ ...@@ -2,22 +2,23 @@
# compose the GFF3 file to prepare for ENA submission # 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 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 ISOSEQ=$BASE/isoseq.gff
BRAKER_R1=$BASE/braker.gff BRAKER_R1=$BASE/braker.gff
BRAKER_R2=$BASE/braker2_unique_renamed_nocodon_intron.gff3 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 # merge the GFF3 files
ls BRAKER_R1 cat $ISOSEQ $BRAKER_R1 $BRAKER_R2 $DENOVO $TRNASCAN > merged.gff3
ls BRAKER_R2
ls DENOVO
# cat isoseq.gff > merged.gff3 # sort the GFF3 file
# cat braker.gff >> merged.gff3 module load genometools/
# cat braker2_unique_renamed_nocodon_intron.gff3 >> merged.gff3 gt gff3 -tidy -retainids -o merged_sorted.gff3 -force 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment