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 = 21550643

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
116462629 GT-AG 0 1.000000099473604e-05 28253 rna-XM_021661892.1 21550643 1 6499669 6527921 Meriones unguiculatus 10047 CAG|GTGAGGACCG...GTGACCTCACAC/CACACTCTCACA...TTCAG|AGA 1 1 2.448
116462630 GT-AG 0 1.000000099473604e-05 4638 rna-XM_021661892.1 21550643 2 6528053 6532690 Meriones unguiculatus 10047 AAG|GTGAGACGCA...TGTCCCTTCCTG/AGGGCCCTCACT...CACAG|GTG 0 1 8.278
116462631 GT-AG 0 1.000000099473604e-05 1295 rna-XM_021661892.1 21550643 3 6532820 6534114 Meriones unguiculatus 10047 GTG|GTGAGTGCGC...TGTCTCTTACTC/GTGTCTCTTACT...CTCAG|GCC 0 1 14.019
116462632 GT-AG 0 1.000000099473604e-05 1075 rna-XM_021661892.1 21550643 4 6534221 6535295 Meriones unguiculatus 10047 CAG|GTAAAGAACC...TAAGCCTAGACC/CAGGGGCTCACA...TACAG|GGA 1 1 18.736
116462633 GT-AG 0 1.000000099473604e-05 5730 rna-XM_021661892.1 21550643 5 6535464 6541193 Meriones unguiculatus 10047 ACG|GTGAGGCGCC...GGGTCCTTTGCT/CCTTTGCTGACT...GGCAG|GCA 1 1 26.213
116462634 GT-AG 0 1.000000099473604e-05 1051 rna-XM_021661892.1 21550643 6 6541310 6542360 Meriones unguiculatus 10047 CAG|GTGAGGTCCT...CATCTCTTGCCT/TAGGTGCTAACC...CCTAG|ATC 0 1 31.375
116462635 GT-AG 0 1.000000099473604e-05 90 rna-XM_021661892.1 21550643 7 6542466 6542555 Meriones unguiculatus 10047 CAG|GTGTGTGGAC...TTTGCCCTGATG/TTTGCCCTGATG...CGTAG|ATC 0 1 36.048
116462636 GT-AG 0 1.000000099473604e-05 1278 rna-XM_021661892.1 21550643 8 6542719 6543996 Meriones unguiculatus 10047 GAG|GTAGGGGCAA...TCCTCCCTCTCC/CTGTGTCCCAGG...CACAG|CCT 1 1 43.302
116462637 GT-AG 0 1.000000099473604e-05 847 rna-XM_021661892.1 21550643 9 6544185 6545031 Meriones unguiculatus 10047 GAG|GTGAGACCCG...GGCCGTTTAGTC/CGTTTAGTCACC...CGCAG|TAC 0 1 51.669
116462638 GT-AG 0 1.000000099473604e-05 356 rna-XM_021661892.1 21550643 10 6545188 6545543 Meriones unguiculatus 10047 GAG|GTGTGTCCCC...CCACCCTGGAAG/GGTCTCGTGAGC...TGTAG|CAA 0 1 58.611
116462639 GT-AG 0 1.000000099473604e-05 85 rna-XM_021661892.1 21550643 11 6545661 6545745 Meriones unguiculatus 10047 AAG|GTGAGCCTGG...GAGCCCCTGACC/GAGCCCCTGACC...TGCAG|AAA 0 1 63.818
116462640 GT-AG 0 1.000000099473604e-05 78 rna-XM_021661892.1 21550643 12 6545854 6545931 Meriones unguiculatus 10047 TCG|GTGAGTCCCT...TGACCCTTCCCT/AAGCCTCTGACC...GGCAG|GAG 0 1 68.625
116462641 GT-AG 0 1.000000099473604e-05 282 rna-XM_021661892.1 21550643 13 6546044 6546325 Meriones unguiculatus 10047 AGG|GTGAGCAGGG...TGGTCCATGCTG/TCCATGCTGAGT...TGCAG|CTG 1 1 73.609

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 30.641ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)