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)

12 rows where transcript_id = 25413791

✎ 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
140208955 GT-AG 0 1.1328562461388013e-05 201 rna-XM_006644233.3 25413791 3 14929928 14930128 Oryza brachyantha 4533 TTC|GTAAGTGGCT...CAATACTTAATT/ACTTAATTTACT...GGTAG|AGG 1 1 7.101
140208956 GT-AG 0 0.0015827411895309 1095 rna-XM_006644233.3 25413791 4 14930305 14931399 Oryza brachyantha 4533 AAG|GTAGACTTTT...TAAATTTTATTC/GTAAATTTTATT...ATTAG|GCT 0 1 11.765
140208957 GT-AG 0 1.000000099473604e-05 88 rna-XM_006644233.3 25413791 5 14931622 14931709 Oryza brachyantha 4533 ACA|GTGAGTATTG...TATGCTTTGAAT/AGTATATTAATC...TGAAG|GTT 0 1 17.647
140208958 GT-AG 0 1.000000099473604e-05 634 rna-XM_006644233.3 25413791 6 14931949 14932582 Oryza brachyantha 4533 AAT|GTAAGTTCAT...ATGGTTTGAGTT/TTTGAGTTAATC...TGCAG|GTC 2 1 23.98
140208959 GT-AG 0 0.003156528411808 71 rna-XM_006644233.3 25413791 7 14933109 14933179 Oryza brachyantha 4533 AAT|GTATGCAAAA...TTGATGTTAATT/TTGATGTTAATT...TGCAG|GGT 0 1 37.917
140208960 GT-AG 0 0.0054121519308564 710 rna-XM_006644233.3 25413791 8 14933454 14934163 Oryza brachyantha 4533 AAG|GTATACCATA...AATGCATTAATA/CAGTTGTTTATG...GAAAG|GTT 1 1 45.178
140208961 GT-AG 0 0.0166749105664607 396 rna-XM_006644233.3 25413791 9 14934828 14935223 Oryza brachyantha 4533 TAG|GTATACATTT...ATATTTTTACAG/TATATTTTTACA...TCTAG|TGG 2 1 62.772
140208962 GT-AG 0 1.875026835649393e-05 90 rna-XM_006644233.3 25413791 10 14935453 14935542 Oryza brachyantha 4533 AAG|GTACATGCCT...GTTGTCTTGCCT/TCTTGCCTAATA...TGCAG|TCA 0 1 68.839
140208963 GT-AG 0 1.000000099473604e-05 116 rna-XM_006644233.3 25413791 11 14935810 14935925 Oryza brachyantha 4533 AGG|GTGCGAGCTC...TCATTGTTGACA/TTTTGGTTCACT...GCTAG|GTC 0 1 75.914
140208964 GT-AG 0 1.000000099473604e-05 96 rna-XM_006644233.3 25413791 12 14936190 14936285 Oryza brachyantha 4533 AAG|GTTGATTCTT...CAGAACTTAATT/ACTTAATTGACA...TTCAG|ACT 0 1 82.909
140222787 GT-AG 0 3.401540609375617e-05 67 rna-XM_006644233.3 25413791 1 14929475 14929541 Oryza brachyantha 4533 CCG|GTTCTCCCTT...TGTCTTCTGACA/TGTCTTCTGACA...TGAAG|CTC   0 2.994
140222788 GT-AG 0 1.000000099473604e-05 225 rna-XM_006644233.3 25413791 2 14929648 14929872 Oryza brachyantha 4533 GAG|GTACAAAAGG...TGATTTTTAAAT/CTCCTTTTTATT...TTCAG|GTT   0 5.803

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