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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
120103165 GT-AG 0 7.355946345121377e-05 5401 rna-XM_036387577.1 22173106 3 71925763 71931163 Molothrus ater 84834 AAG|GTAATTATCT...TTTTTCTTAAAT/TTTTTTCTTAAA...TTCAG|AGT 0 1 1.84
120103166 GT-AG 0 4.2315814717257326e-05 3488 rna-XM_036387577.1 22173106 4 71931281 71934768 Molothrus ater 84834 GAG|GTTTGCCATA...TTGTATTTATTT/CTTGTATTTATT...TACAG|ATT 0 1 3.816
120103167 GT-AG 0 5.033871180342934e-05 1423 rna-XM_036387577.1 22173106 5 71934817 71936239 Molothrus ater 84834 CAG|GTACAGTATC...CTTTTTTTGATT/CTTTTTTTGATT...TTCAG|GAG 0 1 4.626
120103168 GT-AG 0 2.170533901888691e-05 846 rna-XM_036387577.1 22173106 6 71936375 71937220 Molothrus ater 84834 CAG|GTAAAATTTT...AATCCCTTGAAG/AATCCCTTGAAG...TCTAG|AAT 0 1 6.905
120103169 GT-AG 0 3.4433262307409186e-05 445 rna-XM_036387577.1 22173106 7 71937486 71937930 Molothrus ater 84834 CTG|GTAAGTTCTT...CTCTTTTTACCT/ACCTTTTTTATT...TTCAG|GTA 1 1 11.379
120103170 GT-AG 0 1.7107869294782466e-05 2158 rna-XM_036387577.1 22173106 9 71942587 71944744 Molothrus ater 84834 AAG|GTAATATTAA...TTTGTCTTAAAT/TTTTGTCTTAAA...TTTAG|CTC 2 1 89.954
120103171 GT-AG 0 1.000000099473604e-05 3814 rna-XM_036387577.1 22173106 10 71944901 71948714 Molothrus ater 84834 CAG|GTAATTATAA...TTGTTCTTTTCT/TTCTAGTTCAGC...GGCAG|TAA 2 1 92.588
120103172 GT-AG 0 1.000000099473604e-05 706 rna-XM_036387577.1 22173106 11 71948799 71949504 Molothrus ater 84834 CAG|GTTGGTTGAG...GTTTTCTTAATT/ATTGTATTCATA...TACAG|TGA 2 1 94.006
120103173 GT-AG 0 0.0001438365956985 2426 rna-XM_036387577.1 22173106 12 71949552 71951977 Molothrus ater 84834 AAG|GTAACGTCAG...ATTTTTTTGAAA/GATTTGCTTATT...GTTAG|GTT 1 1 94.8
120103174 GT-AG 0 2.167168791126687e-05 4540 rna-XM_036387577.1 22173106 13 71952139 71956678 Molothrus ater 84834 TTT|GTAAGTACTC...GATGTCCTAGTC/AAATATTTTATG...TTTAG|CTT 0 1 97.518
120112018 GT-GT 0 1.000000099473604e-05 5958 rna-XM_036387577.1 22173106 1 71916968 71922925 Molothrus ater 84834 CAG|GTACGGAGCG...CCTTCTTTATTA/TCTTTATTAACA...GCCGT|CCA   0 0.675
120112019 CA-TG 0 0.3281623143209988 2717 rna-XM_036387577.1 22173106 2 71922935 71925651 Molothrus ater 84834 CCA|CACTCCAGCA...TAAATATTAGCG/TATAAAGTAATC...TTTTG|CAG   0 0.827

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