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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
187538926 GT-AG 0 0.0006791805976049 2103 rna-XM_021459766.1 33469747 1 61235198 61237300 Sorghum bicolor 4558 GAG|GTCGCTCCCT...CTTTTCTTAATG/TCTTTTCTTAAT...TGTAG|ATA 1 1 3.596
187538927 GT-AG 0 1.000000099473604e-05 323 rna-XM_021459766.1 33469747 2 61237401 61237723 Sorghum bicolor 4558 ACT|GTGAGAACTA...ATTACCTTATTC/AATTACCTTATT...TTCAG|GCA 2 1 6.025
187538928 GT-AG 0 1.000000099473604e-05 621 rna-XM_021459766.1 33469747 3 61237833 61238453 Sorghum bicolor 4558 CAG|GTAATGCGCT...TCTTTCCTACCT/TCTTCTATCATA...TGCAG|GAA 0 1 8.673
187538929 GT-AG 0 2.7988201729203837e-05 1097 rna-XM_021459766.1 33469747 4 61239957 61241053 Sorghum bicolor 4558 CAG|GTACTATTAA...ATTTCTTTCACT/ATTTCTTTCACT...GCTAG|GTC 0 1 45.19
187538930 GT-AG 0 0.4474202294914495 105 rna-XM_021459766.1 33469747 5 61241297 61241401 Sorghum bicolor 4558 CAG|GTATCTTCTT...GTCTCTTTCTTA/CTCTTTCTTATT...GGCAG|ATC 0 1 51.093
187538931 GT-AG 0 0.1342405963033963 1358 rna-XM_021459766.1 33469747 6 61241717 61243074 Sorghum bicolor 4558 CAA|GTATGCTCTC...CTGTCATTAACA/TTGTTGTTTATT...TATAG|GCT 0 1 58.746
187538932 GT-AG 0 2.161147702668448e-05 263 rna-XM_021459766.1 33469747 7 61243315 61243577 Sorghum bicolor 4558 AAG|GTATTAATAT...TCCCCATTGATC/TTTAAATTAACT...TTTAG|GTG 0 1 64.577
187538933 GT-AG 0 4.789686596611766e-05 78 rna-XM_021459766.1 33469747 8 61243863 61243940 Sorghum bicolor 4558 AAA|GTAAGCATAC...TGGCCCTTGTCA/GTGGGATTAACC...GACAG|GAA 0 1 71.501
187538934 GT-AG 0 1.000000099473604e-05 920 rna-XM_021459766.1 33469747 9 61244163 61245082 Sorghum bicolor 4558 CAG|GTGATCCACC...TCATCCTTATTC/ATCATCCTTATT...TGTAG|GCT 0 1 76.895
187538935 GT-AG 0 1.000000099473604e-05 486 rna-XM_021459766.1 33469747 10 61245245 61245730 Sorghum bicolor 4558 AAG|GTGAGGTTCG...TCACACATGATC/CACATGATCATT...TTTAG|GTC 0 1 80.831
187538936 GT-AG 0 1.000000099473604e-05 358 rna-XM_021459766.1 33469747 11 61245866 61246223 Sorghum bicolor 4558 GAG|GTAATGTCAT...CTAATTATAATG/GTTCAACTAATT...TCCAG|TTG 0 1 84.111
187538937 GT-AG 0 0.0003625313554259 105 rna-XM_021459766.1 33469747 12 61246461 61246565 Sorghum bicolor 4558 CAG|GTATGTCCTC...TATTCCTCATTT/ATATTCCTCATT...TTCAG|ATT 0 1 89.869
187538938 GT-AG 0 1.000000099473604e-05 580 rna-XM_021459766.1 33469747 13 61246740 61247319 Sorghum bicolor 4558 AAG|GTAAATATAT...TCATCTTCAATG/AAATTACTCATC...TGCAG|GGG 0 1 94.096

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