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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
20804649 GT-AG 0 1.000000099473604e-05 841 rna-XM_010311899.1 4024499 2 19807 20647 Balearica regulorum 925459 GAG|GTAAGATCTA...AACATCTTAATT/AACATCTTAATT...TGTAG|GCT 0 1 8.703
20804650 GT-AG 0 1.000000099473604e-05 2881 rna-XM_010311899.1 4024499 3 20780 23660 Balearica regulorum 925459 AAG|GTAAGAATTT...TTTTTCTTTTTT/TGTAAGGTGATT...TTCAG|GCA 0 1 15.75
20804651 GT-AG 0 1.000000099473604e-05 550 rna-XM_010311899.1 4024499 4 23791 24340 Balearica regulorum 925459 AAG|GTGGGCATAC...AGTTCCTTTGTT/CCTTTGTTTACA...CACAG|ATA 1 1 22.691
20804652 GT-AG 0 1.000000099473604e-05 667 rna-XM_010311899.1 4024499 5 24439 25105 Balearica regulorum 925459 CAG|GTAGTTGGGG...ATTACTGTATTT/GTAAATATTACT...TTAAG|GAT 0 1 27.923
20804653 GT-AG 0 1.000000099473604e-05 757 rna-XM_010311899.1 4024499 6 25232 25988 Balearica regulorum 925459 CAA|GTAAGTAGTT...TCTGTTTTCTTT/CTGCATATAATT...TTCAG|CAT 0 1 34.65
20804654 GT-AG 0 1.000000099473604e-05 723 rna-XM_010311899.1 4024499 7 26184 26906 Balearica regulorum 925459 CTG|GTAAGAATAT...TTTGGTTTAATG/TTTGGTTTAATG...TTCAG|GTA 0 1 45.061
20804655 GT-AG 0 3.840336609157028e-05 388 rna-XM_010311899.1 4024499 8 27032 27419 Balearica regulorum 925459 AAG|GTATTAAATA...TAGTCCCTAATT/CAAATACTCATT...TCCAG|GTC 2 1 51.735
20804656 GT-AG 0 1.000000099473604e-05 2476 rna-XM_010311899.1 4024499 9 27560 30035 Balearica regulorum 925459 CTG|GTAAAGCCTT...TTAATTTTATCA/AATTTTATCACT...AATAG|GAA 1 1 59.21
20804657 GT-AG 0 8.006617013966821e-05 2626 rna-XM_010311899.1 4024499 10 30190 32815 Balearica regulorum 925459 CTA|GTAAGTATCT...CATGCTTTGAAT/TTAGTTGTCATG...TTTAG|TTT 2 1 67.432
20804658 GT-AG 0 4.85732566848086e-05 1193 rna-XM_010311899.1 4024499 11 33049 34241 Balearica regulorum 925459 TAG|GTATTTGAAA...TCTGCTATAAAC/AAGTTATTAAGT...TCAAG|TTA 1 1 79.872
20804659 GT-AG 0 0.0004953419590543 714 rna-XM_010311899.1 4024499 12 34324 35037 Balearica regulorum 925459 AAG|GTATTTGGTC...GCCGTCTTATTA/GTCTTATTAAAT...TTCAG|TAC 2 1 84.25
20804660 GT-AG 0 1.1725328883759258e-05 1274 rna-XM_010311899.1 4024499 13 35220 36493 Balearica regulorum 925459 AAT|GTAAGTATAT...TGGGTTTTAAAT/TTTTTTTTCAAT...TCTAG|CAT 1 1 93.967
20804661 GT-AG 0 1.1991633747352276e-05 4360 rna-XM_010311899.1 4024499 1 15319 19678 Balearica regulorum 925459 CAG|GTAATTATTT...GCTTCCGTATCT/ATATTCTTCAAA...GAAAG|CAT   0 4.058

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