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

✎ 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
65073616 GT-AG 0 4.38954026627894e-05 276 rna-XM_026123529.1 11997951 1 6244737 6245012 Dromaius novaehollandiae 8790 TTG|GTCGGCATTT...GCGACTTTGACC/TTTGACCTGATC...TGAAG|ATC 1 1 0.762
65073617 GT-AG 0 1.000000099473604e-05 4319 rna-XM_026123529.1 11997951 2 6245031 6249349 Dromaius novaehollandiae 8790 AAG|GTGAGGTTGC...GTTGTTTTTTCT/CATTGTGTAAAA...TGTAG|GTC 1 1 1.816
65073618 GT-AG 0 8.52452095608715e-05 2032 rna-XM_026123529.1 11997951 3 6249394 6251425 Dromaius novaehollandiae 8790 AAG|GTATGATGTT...TTGTTCTTTTTA/AAGCTTTTCACA...TCCAG|AAC 0 1 4.394
65073619 GT-AG 0 1.000000099473604e-05 1155 rna-XM_026123529.1 11997951 4 6251480 6252634 Dromaius novaehollandiae 8790 AAG|GTCTGGCACC...TAGCTCTTAGTT/TCTTAGTTCATT...CCCAG|GAT 0 1 7.557
65073620 GT-AG 0 1.000000099473604e-05 2272 rna-XM_026123529.1 11997951 5 6252799 6255070 Dromaius novaehollandiae 8790 ATG|GTAAATGTTT...TCAGCCATATCT/GTCTAATTCATT...TCCAG|GTT 2 1 17.165
65073621 GT-AG 0 1.000000099473604e-05 352 rna-XM_026123529.1 11997951 6 6255228 6255579 Dromaius novaehollandiae 8790 GGG|GTGAGTGGCA...CTTTCTTTCATT/CTTTCTTTCATT...GAAAG|GAA 0 1 26.362
65073622 GT-AG 0 0.0001014229202433 535 rna-XM_026123529.1 11997951 7 6255732 6256266 Dromaius novaehollandiae 8790 CAA|GTAATTTCTT...GTGTCTGTATTG/TTCATTGTCAGG...TTCAG|AGG 2 1 35.267
65073623 GT-AG 0 1.000000099473604e-05 1721 rna-XM_026123529.1 11997951 8 6256406 6258126 Dromaius novaehollandiae 8790 AAG|GTAAGATCCT...AGCATGTTAATG/AATGTTATGATA...ACTAG|GGA 0 1 43.409
65073624 GT-AG 0 1.000000099473604e-05 573 rna-XM_026123529.1 11997951 9 6258245 6258817 Dromaius novaehollandiae 8790 CTG|GTAAGTTGCA...AATTTCTTGTTT/GAGGAGCTTATT...TGCAG|GAG 1 1 50.322
65073625 GT-AG 0 1.000000099473604e-05 1263 rna-XM_026123529.1 11997951 10 6259014 6260276 Dromaius novaehollandiae 8790 CAG|GTAGAATGAG...AACCCTTTACTT/CAACCCTTTACT...TGGAG|TTG 2 1 61.804
65073626 GT-AG 0 1.000000099473604e-05 981 rna-XM_026123529.1 11997951 11 6260440 6261420 Dromaius novaehollandiae 8790 GTG|GTGAGTATTT...ATTGTTTTGTTC/ATCATTTTCATT...CCTAG|GGC 0 1 71.353
65073627 GT-AG 0 1.000000099473604e-05 176 rna-XM_026123529.1 11997951 12 6261576 6261751 Dromaius novaehollandiae 8790 TAG|GTGAGTAAAA...AATATTTTGGCT/TGAAATTTCACA...TTCAG|TGA 2 1 80.434

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