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

✎ 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
128509963 GT-AG 0 1.000000099473604e-05 2294 rna-XM_019408128.1 23617031 2 13276221 13278514 Nicotiana attenuata 49451 CAG|GTAATATCTC...TCTTGCTTAATA/TCTTGCTTAATA...TGCAG|ACG 2 1 7.072
128509964 GT-AG 0 1.286529061154314e-05 69 rna-XM_019408128.1 23617031 3 13276092 13276160 Nicotiana attenuata 49451 CAG|GTAATTTGGC...TGAATTTTGATA/AATTTGCTAATT...TTCAG|ACT 2 1 7.906
128509965 GT-AG 0 0.0143317086991048 881 rna-XM_019408128.1 23617031 4 13275105 13275985 Nicotiana attenuata 49451 GAG|GTATTCCTTC...TGGTTTTTGCTT/AATTAGCTAACT...GCCAG|GAA 0 1 9.379
128509966 GT-AG 0 0.0012615012639614 161 rna-XM_019408128.1 23617031 5 13274875 13275035 Nicotiana attenuata 49451 GAG|GTAAACTTTT...CCATTTTTAAAT/CCATTTTTAAAT...TGCAG|GCA 0 1 10.338
128509967 GT-AG 0 1.000000099473604e-05 226 rna-XM_019408128.1 23617031 6 13274595 13274820 Nicotiana attenuata 49451 AAG|GTAATACATC...ATGAATTTATTC/CATGAATTTATT...TACAG|GCT 0 1 11.088
128509968 GT-AG 0 4.039561160902439e-05 2007 rna-XM_019408128.1 23617031 7 13272480 13274486 Nicotiana attenuata 49451 GAG|GTAATCCTTT...CGGAATTTAACT/TTTGCACTTATT...CTCAG|GGT 0 1 12.589
128509969 GT-AG 0 1.000000099473604e-05 94 rna-XM_019408128.1 23617031 8 13272236 13272329 Nicotiana attenuata 49451 CAG|GTAATGGTCT...CTTTTTGTACCG/TTGTAGTTTATT...TGCAG|GTT 0 1 14.673
128509970 GT-AG 0 0.0003209614960034 115 rna-XM_019408128.1 23617031 9 13271773 13271887 Nicotiana attenuata 49451 CAG|GTATTGTCAG...CTTTTTTTGATG/CTTTTTTTGATG...TTCAG|GAA 0 1 19.508
128509971 GT-AG 0 1.000000099473604e-05 1138 rna-XM_019408128.1 23617031 10 13268233 13269370 Nicotiana attenuata 49451 GAG|GTGAGCTCTA...TTAACCTTACCT/TTCTGTTTAACC...TTCAG|GTA 2 1 52.883
128509972 GT-AG 0 1.000000099473604e-05 385 rna-XM_019408128.1 23617031 11 13265244 13265628 Nicotiana attenuata 49451 TAG|GTAAGAATAC...ATCGTCATATTT/ACAATGCTAATC...GTCAG|GGA 2 1 89.065
128509973 GT-AG 0 0.0294036862229038 1595 rna-XM_019408128.1 23617031 12 13263321 13264915 Nicotiana attenuata 49451 CAG|GTCTGCTTTT...CTATTCTTGATT/CTATTCTTGATT...TGCAG|AAT 0 1 93.622
128517144 GT-AG 0 1.000000099473604e-05 2767 rna-XM_019408128.1 23617031 1 13278709 13281475 Nicotiana attenuata 49451 CAG|GTGATCTAAT...CTCTTTTTATTT/TTTTATTTTACT...AATAG|TTC   0 5.419

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