Skip to content

Commit 3e5efce

Browse files
committed
convert list to table
1 parent 5f2f15d commit 3e5efce

1 file changed

Lines changed: 17 additions & 34 deletions

File tree

docs/comparisons/bioinformatics/index.md

Lines changed: 17 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -26,40 +26,23 @@ In [this blogpost](https://biojulia.dev/posts/biojl/), the main developer of Bio
2626
An important task in bioinformatics is parsing files in various standard formats.
2727
Here we list some file formats and packages with parsers:
2828

29-
* [FASTA](https://en.wikipedia.org/wiki/FASTA_format) (.fas, .fasta, .fa): DNA or protein sequences without annotations
30-
- [FASTX](https://github.com/BioJulia/FASTX.jl)
31-
* [FASTQ](https://en.wikipedia.org/wiki/FASTQ_format) (.fq, .fastq): DNA sequences with quality information
32-
- [FASTX](https://github.com/BioJulia/FASTX.jl)
33-
* [GENBANK](https://en.wikipedia.org/wiki/GenBank) (.gb, .gbk): DNA or protein sequences with annotations
34-
- [GenomicAnnotations.jl](https://github.com/BioJulia/GenomicAnnotations.jl)
35-
* EMBL (.embl): DNA or protein sequences with annotations
36-
- [GenomicAnnotations.jl](https://github.com/BioJulia/GenomicAnnotations.jl)
37-
* GFF3, GFF2/GTF (.gff): Annotated genomes
38-
- [GenomicAnnotations.jl](https://github.com/BioJulia/GenomicAnnotations.jl)
39-
* [SAM](https://en.wikipedia.org/wiki/SAM_(file_format)) (.sam): Aligned DNA sequences (typically from read mapping). Text based.
40-
- [XAM.jl](https://github.com/BioJulia/XAM.jl)
41-
* [BAM](https://en.wikipedia.org/wiki/BAM_(file_format)) (.bam): Aligned DNA sequences (typically from read mapping). Binary.
42-
- [XAM.jl](https://github.com/BioJulia/XAM.jl)
43-
* PDB (.pdb): Protein 3D structure.
44-
- [BioStructures.jl](https://github.com/BioJulia/BioStructures.jl)
45-
- [MIToS](https://github.com/diegozea/MIToS.jl)
46-
* [mmCIF](https://en.wikipedia.org/wiki/Macromolecular_Crystallographic_Information_File): Macromolecular Crystallographic Information File (mmCIF) also known as PDBx/mmCIF is a standard text file format for representing macromolecular structure data
47-
- [BioStructures.jl](https://github.com/BioJulia/BioStructures.jl)
48-
- [MIToS](https://github.com/diegozea/MIToS.jl)
49-
* [MMTF](https://github.com/rcsb/mmtf): MacroMolecular Transmission Format (MMTF) is a binary encoding of biological structures.
50-
- [BioStructures.jl](https://github.com/BioJulia/BioStructures.jl)
51-
* [DSSP](https://github.com/PDB-REDO/dssp) Protein Secondary Structure
52-
- [ProteinSecondaryStructures.jl](https://github.com/BioJulia/ProteinSecondaryStructures.jl)
53-
* [STRIDE](https://webclu.bio.wzw.tum.de/stride/) Protein Secondary Structure
54-
- [ProteinSecondaryStructures.jl](https://github.com/BioJulia/ProteinSecondaryStructures.jl)
55-
* [PAF](https://github.com/slimsuite/pafscaff) (.paf) Pairwise mApping Format.
56-
- [PairwiseMappingFormat.jl](https://github.com/BioJulia/PairwiseMappingFormat.jl)
57-
* [Stockholm][https://en.wikipedia.org/wiki/Stockholm_format] (.sto, .stk, .stockholm): Stockholm format is a multiple sequence alignment format used by Pfam, Rfam and Dfam
58-
- [MIToS.jl](https://github.com/diegozea/MIToS.jl)
59-
* [A3M](https://en.wikipedia.org/wiki/FASTA_format) A2M/A3M are a family of FASTA-derived formats used for sequence alignments
60-
- [MIToS.jl](https://github.com/diegozea/MIToS.jl)
61-
* [PIR](https://www.bioinformatics.nl/tools/crab_pir.html) Multiple sequence alignment format
62-
- [MIToS.jl](https://github.com/diegozea/MIToS.jl)
29+
| Format | Extensions | Description | Packages |
30+
|-----------------------------------------------------------------------------------------|------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------|
31+
| [FASTA](https://en.wikipedia.org/wiki/FASTA_format) | .fas, .fasta, .fa | DNA or protein sequences without annotations | [FASTX](https://github.com/BioJulia/FASTX.jl) |
32+
| [FASTQ](https://en.wikipedia.org/wiki/FASTQ_format) | .fq, .fastq | DNA sequences with quality information | [FASTX](https://github.com/BioJulia/FASTX.jl) |
33+
| [GENBANK](https://en.wikipedia.org/wiki/GenBank) | .gb, .gbk | DNA or protein sequences with annotations | [GenomicAnnotations.jl](https://github.com/BioJulia/GenomicAnnotations.jl) |
34+
| EMBL | .embl | DNA or protein sequences with annotations | [GenomicAnnotations.jl](https://github.com/BioJulia/GenomicAnnotations.jl) |
35+
| [SAM](https://en.wikipedia.org/wiki/SAM_(file_format)) | .sam | Aligned DNA sequences (typically from read mapping). Text based. | [XAM.jl](https://github.com/BioJulia/XAM.jl) |
36+
| [BAM](https://en.wikipedia.org/wiki/BAM_(file_format)) | .bam | Aligned DNA sequences (typically from read mapping). Binary. | [XAM.jl](https://github.com/BioJulia/XAM.jl) |
37+
| [PDB](https://en.wikipedia.org/wiki/Protein_Data_Bank_(file_format)) | .pdb | Protein 3D structure. | [BioStructures.jl](https://github.com/BioJulia/BioStructures.jl), [MIToS](https://github.com/diegozea/MIToS.jl) |
38+
| [mmCIF](https://en.wikipedia.org/wiki/Macromolecular_Crystallographic_Information_File) | | Macromolecular Crystallographic Information File (mmCIF) also known as PDBx/mmCIF is a standard text file format for representing macromolecular structure data | [BioStructures.jl](https://github.com/BioJulia/BioStructures.jl), [MIToS](https://github.com/diegozea/MIToS.jl) |
39+
| [MMTF](https://github.com/rcsb/mmtf) | | MacroMolecular Transmission Format (MMTF) is a binary encoding of biological structures. | [BioStructures.jl](https://github.com/BioJulia/BioStructures.jl) |
40+
| [DSSP](https://github.com/PDB-REDO/dssp) | | Protein Secondary Structure | [ProteinSecondaryStructures.jl](https://github.com/BioJulia/ProteinSecondaryStructures.jl) |
41+
| [STRIDE](https://webclu.bio.wzw.tum.de/stride/) | | Protein Secondary Structure | [ProteinSecondaryStructures.jl](https://github.com/BioJulia/ProteinSecondaryStructures.jl) |
42+
| [PAF](https://github.com/slimsuite/pafscaff) | .paf | Pairwise mApping Format. | [PairwiseMappingFormat.jl](https://github.com/BioJulia/PairwiseMappingFormat.jl) |
43+
| [Stockholm](https://en.wikipedia.org/wiki/Stockholm_format) | .sto, .stk, .stockholm | Stockholm format is a multiple sequence alignment format used by Pfam, Rfam and Dfam | [MIToS.jl](https://github.com/diegozea/MIToS.jl) |
44+
| [A3M](https://en.wikipedia.org/wiki/FASTA_format) | .fas | A2M/A3M are a family of FASTA-derived formats used for sequence alignments | [MIToS.jl](https://github.com/diegozea/MIToS.jl) |
45+
| [PIR](https://www.bioinformatics.nl/tools/crab_pir.html) | .pir | Multiple sequence alignment format | [MIToS.jl](https://github.com/diegozea/MIToS.jl) |
6346

6447
# Data Structures
6548

0 commit comments

Comments
 (0)