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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
21480750 GT-AG 0 1.000000099473604e-05 558 rna-XM_039028235.1 4157743 1 6184333 6184890 Benincasa hispida 102211 CAG|GTAAAGTTGG...ACAATTTTGATT/TTATTATTAATT...TTCAG|TCG 0 1 2.7
21480751 GT-AG 0 0.0023998136614946 118 rna-XM_039028235.1 4157743 2 6182877 6182994 Benincasa hispida 102211 AAG|GTGTTCTCTC...TATCTTTTGATG/GTTCTTTTCATT...GACAG|AAA 0 1 22.444
21480752 GC-AG 0 1.000000099473604e-05 155 rna-XM_039028235.1 4157743 3 6181396 6181550 Benincasa hispida 102211 CAG|GCAAGTGCCC...TTCATCTCAATT/TGAGTGCTAATT...ATTAG|GGT 0 1 42.01
21480753 GT-AG 0 0.0001782808891653 260 rna-XM_039028235.1 4157743 4 6181023 6181282 Benincasa hispida 102211 CAA|GTAAGTTCTC...TGTCTTTTAATT/ATTATTTTCATC...CTCAG|GTA 2 1 43.677
21480754 GT-AG 0 0.0001549759612405 92 rna-XM_039028235.1 4157743 5 6180843 6180934 Benincasa hispida 102211 CTT|GTAGGTCATC...TCAGTCTTAATA/ATTTTTGTTATG...TGTAG|GTT 0 1 44.976
21480755 GT-AG 0 0.0003652801486181 2895 rna-XM_039028235.1 4157743 6 6177861 6180755 Benincasa hispida 102211 CAG|GTACTTTCCA...GGTACTTTATTC/TGGTACTTTATT...TGCAG|GTA 0 1 46.259
21480756 GT-AG 0 1.000000099473604e-05 82 rna-XM_039028235.1 4157743 7 6177686 6177767 Benincasa hispida 102211 AAG|GTCAGTAATC...AAGAGCTTAATT/AAGAGCTTAATT...TGCAG|AGT 0 1 47.632
21480757 GT-AG 0 1.000000099473604e-05 81 rna-XM_039028235.1 4157743 8 6177521 6177601 Benincasa hispida 102211 CAG|GTAAGAGATG...AATTTCTTCTCT/TTATAATTGAGG...TACAG|GAG 0 1 48.871
21480758 GT-AG 0 1.000000099473604e-05 705 rna-XM_039028235.1 4157743 9 6176612 6177316 Benincasa hispida 102211 CAG|GTTTGTCAAG...TGAATCTTATTT/ATGAATCTTATT...TGCAG|AAT 0 1 51.881
21480759 GT-AG 0 0.0005820079548428 77 rna-XM_039028235.1 4157743 10 6176292 6176368 Benincasa hispida 102211 AAG|GTATGATTTT...TTTCATTTAATT/TTGCATTTCATT...TTCAG|GTT 0 1 55.467
21480760 GT-AG 0 0.0018536190420317 106 rna-XM_039028235.1 4157743 11 6174614 6174719 Benincasa hispida 102211 CTG|GTAAACTATT...TGCTTTTTAACT/TGCTTTTTAACT...TTCAG|CCT 0 1 78.663
21480761 GT-AG 0 7.163661679742173e-05 613 rna-XM_039028235.1 4157743 12 6173455 6174067 Benincasa hispida 102211 AGG|GTACGTACCA...GAATTTTTAATA/TTTGAACTTACC...TTCAG|TGC 0 1 86.72
21480762 GT-AG 0 0.0051535921038949 902 rna-XM_039028235.1 4157743 13 6172301 6173202 Benincasa hispida 102211 GAG|GTATGATTTT...GTTCCTTTAATG/TTAATGTTGACG...TGCAG|GTA 0 1 90.438

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