Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • cc18d27
  • /
  • TE_calling
  • /
  • convert_gff_and_tsv_uniqIDs.sh
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge
swh:1:cnt:07a554568246af4664de19935072ef826eeca281
directory badge
swh:1:dir:0de94a0f482374ef120b247b4064585304e76e05

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
convert_gff_and_tsv_uniqIDs.sh
#!/bin/bash 
#####Beatriz Navarro Dominguez
#####Generate TSV file for McClintock from RepeatMasker GFF

gff=$1
te_fasta=$2

# Change the name column so it's the same than in the example data of McClintock
sed "s/Target=/ID=/g" $gff > tmp

# Change the second column so it's the same than in the example data of McClintock

sed -i "s/dispersed_repeat/transposable_element/g" tmp

#Drop the last columns and change the 6 for a dot as in the example data
awk {'print $1"\t"$2"\t"$3"\t"$4"\t"$5"\t\.\t"$7"\t"$8"\t"$9"__"NR'} tmp > $(basename $gff .gff).mcclintock.gff 

# Remove commented lines

sed -i -e '/^[ \t]*#/d' $(basename $gff .gff).mcclintock.gff 

#Remove the "-int" labels added by repeatmasker? while generating the GFF

sed -i 's/\-int//' $(basename $gff .gff).mcclintock.gff

# Generate tsv file from the Rmasker database

#grep ">" specieslib_mod2_centromere_v2.fasta | sed "s/>//" | sed "s/#/\t/" | sed "s/\//_/" > dmel.chromosomes.fa.TE.mcClintock.tsv

awk {'print $9'} $(basename $gff .gff).mcclintock.gff |sed "s/ID=//" > tmp

awk {'print $9'} $(basename $gff .gff).mcclintock.gff |sed "s/ID=//" | sed "s/__.*$//"  >  tmp2

paste tmp tmp2 > $(basename $gff .gff).mcclintock.tsv

#rm tmp*

# Clean up fasta headers (from # until the end of the line)
sed 's/\#.*//' $te_fasta > $(basename $te_fasta .fa).mcclintock.fa

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API