home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

13 rows where transcript_id = 11997978

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
65073869 GT-AG 0 1.3505340271513191e-05 1162 rna-XM_026097517.1 11997978 1 1197666 1198827 Dromaius novaehollandiae 8790 CAG|GTAACGCGGA...ATGTGTTTAACT/ATGTGTTTAACT...TTCAG|ACT 2 1 2.763
65073870 GT-AG 0 1.000000099473604e-05 737 rna-XM_026097517.1 11997978 2 1196886 1197622 Dromaius novaehollandiae 8790 TTG|GTAAGAACAG...TTTGCTTTATTT/TATTTGTTCATT...TACAG|AAA 0 1 6.477
65073871 GT-AG 0 1.000000099473604e-05 1437 rna-XM_026097517.1 11997978 3 1195308 1196744 Dromaius novaehollandiae 8790 AAG|GTTAGTAGGT...AATGTTTTACTT/AAATGTTTTACT...TTTAG|ACT 0 1 18.653
65073872 GT-AG 0 1.000000099473604e-05 635 rna-XM_026097517.1 11997978 4 1194588 1195222 Dromaius novaehollandiae 8790 GAA|GTAAGGACTG...TTATCTTTAGAC/AGACTTTTAATT...CTTAG|CCA 1 1 25.993
65073873 GT-AG 0 0.0230552894425219 1883 rna-XM_026097517.1 11997978 5 1192624 1194506 Dromaius novaehollandiae 8790 TCG|GTATGTTTAA...CCACTCTTAAAA/CAGTTAGTCACA...TCTAG|GCA 1 1 32.988
65073874 GT-AG 0 1.000000099473604e-05 16263 rna-XM_026097517.1 11997978 6 1176308 1192570 Dromaius novaehollandiae 8790 GGG|GTAAGTAAAG...TTATTTTTAGTA/ATTATTTTTAGT...CATAG|GGA 0 1 37.565
65073875 GT-AG 0 1.000000099473604e-05 4495 rna-XM_026097517.1 11997978 7 1171734 1176228 Dromaius novaehollandiae 8790 TAG|GTAAGTATTT...TCTCCCTTCACT/TCTCCCTTCACT...TACAG|GCC 1 1 44.387
65073876 GT-AG 0 5.3738981644191375e-05 1056 rna-XM_026097517.1 11997978 8 1170532 1171587 Dromaius novaehollandiae 8790 AAG|GTAAACCGCG...CTATTTTTAATT/CTATTTTTAATT...AATAG|CTG 0 1 56.995
65073877 GT-AG 0 1.5427625359239073e-05 1592 rna-XM_026097517.1 11997978 9 1168853 1170444 Dromaius novaehollandiae 8790 AAG|GTAATCTGGT...ATTTGCTTTTTA/TCGAAAATAACA...AATAG|AGC 0 1 64.508
65073878 GT-AG 0 9.016637918292883e-05 794 rna-XM_026097517.1 11997978 10 1168000 1168793 Dromaius novaehollandiae 8790 CAG|GTATTTGGGA...CATTTATTAATA/AATTCATTCATT...TTTAG|TCT 2 1 69.603
65073879 GT-AG 0 0.0003731090529173 6182 rna-XM_026097517.1 11997978 11 1161736 1167917 Dromaius novaehollandiae 8790 GAG|GTAACGTGTT...TGTGTCTGAATT/ATGTGTCTGAAT...CCCAG|ACC 0 1 76.684
65073880 GT-AG 0 1.000000099473604e-05 1165 rna-XM_026097517.1 11997978 12 1160451 1161615 Dromaius novaehollandiae 8790 ATG|GTAAGTGAGG...ATTTCTTTATCT/TTACTGCTCATT...TTCAG|AGA 0 1 87.047
65073881 GT-AG 0 1.000000099473604e-05 4764 rna-XM_026097517.1 11997978 13 1155653 1160416 Dromaius novaehollandiae 8790 CAG|GTAAGTGTGT...GTTTTTGTATTT/TTGTATTTCACC...GATAG|TGC 1 1 89.983

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 27.893ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)