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)

11 rows where transcript_id = 11997974

✎ 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
65073833 GT-AG 0 0.1453335091419514 433 rna-XM_026112842.1 11997974 1 1968427 1968859 Dromaius novaehollandiae 8790 GCC|GTATGTTTGT...GATCTATTAAAC/GATCTATTAAAC...CAAAG|GTC 1 1 2.771
65073834 GT-AG 0 0.0032063725819738 8595 rna-XM_026112842.1 11997974 2 1959679 1968273 Dromaius novaehollandiae 8790 AGG|GTAACTATTA...TTTCTCTTTGCA/CCAAGGCTGACA...TTGAG|GTT 1 1 15.24
65073835 GT-AG 0 1.000000099473604e-05 5912 rna-XM_026112842.1 11997974 3 1953657 1959568 Dromaius novaehollandiae 8790 AAG|GTAAGAAGAT...CTTCCCTTGTCC/GCGTTGTTAACG...CGTAG|TGC 0 1 24.205
65073836 GT-AG 0 1.000000099473604e-05 3070 rna-XM_026112842.1 11997974 4 1950457 1953526 Dromaius novaehollandiae 8790 CAG|GTACGTACAG...TCATTCTTTTCT/ATAAATTTCATT...TTCAG|ATG 1 1 34.8
65073837 GT-AG 0 1.000000099473604e-05 70873 rna-XM_026112842.1 11997974 5 1879557 1950429 Dromaius novaehollandiae 8790 GAG|GTAAGAGCCA...CGGTGTTTACTA/TGTTTACTAATG...AACAG|TCA 1 1 37.001
65073838 GT-AG 0 2.608149349501864e-05 21577 rna-XM_026112842.1 11997974 6 1857883 1879459 Dromaius novaehollandiae 8790 TTG|GTACAGTAAT...TTTTCTTTGTCT/AACTTTCTCATA...TTCAG|GTG 2 1 44.906
65073839 GT-AG 0 0.0001597010447232 1167 rna-XM_026112842.1 11997974 7 1856567 1857733 Dromaius novaehollandiae 8790 AAG|GTAACGCTCA...TATTTCTTTTTA/AAGCAATTCAAC...CACAG|ATA 1 1 57.05
65073840 GT-AG 0 4.98608198315412e-05 26349 rna-XM_026112842.1 11997974 8 1830158 1856506 Dromaius novaehollandiae 8790 CAG|GTACGGTTCC...TTCCCCTTACAC/GCTCTTTTCACC...CACAG|AGA 1 1 61.94
65073841 GT-AG 0 0.0100037851564429 1887 rna-XM_026112842.1 11997974 9 1828147 1830033 Dromaius novaehollandiae 8790 CAG|GTAACCCTTG...AGTTCTTCAAAA/TATAAAGTAACT...TTCAG|ATG 2 1 72.046
65073842 GT-AG 0 1.000000099473604e-05 5873 rna-XM_026112842.1 11997974 10 1822115 1827987 Dromaius novaehollandiae 8790 AAG|GTCAGTATCT...AGATCCATGCTA/TGTGTATTCATG...TCCAG|GAA 2 1 85.004
65073843 GT-AG 0 1.000000099473604e-05 405 rna-XM_026112842.1 11997974 11 1821623 1822027 Dromaius novaehollandiae 8790 AAG|GTTAATTTAA...TTTTTTTTCTTT/TGGACACTAACA...TCCAG|TTC 2 1 92.095

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