https://github.com/chishui/tabida
Tabida is a very simple tool for some specific biological data analyzing.
https://github.com/chishui/tabida
Last synced: about 1 month ago
JSON representation
Tabida is a very simple tool for some specific biological data analyzing.
- Host: GitHub
- URL: https://github.com/chishui/tabida
- Owner: chishui
- Created: 2014-08-07T09:07:14.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-24T06:59:11.000Z (about 11 years ago)
- Last Synced: 2025-02-15T02:46:17.735Z (8 months ago)
- Language: Python
- Size: 191 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tabida
======The name "Tabida" derived from "TAoli's BIological Data Analysis".
It is a very simple tool for some specific biological data analyzing. It does not need any other libraries dependency only but standard libraries of python.# io.py
It encapsulates python's basic file read & write functions which conforms "ReadLines" and "WriteLines".
It can also handle structured data files such as .CSV. "ReadColumn" and "WriteColumn" are such functions.
Structured data as below:header1 | header2 | header3 | header4
--------------------------------------
C1R1 | C2R1 | C3R1 | C4R1
--------------------------------------
C1R2 | C2R2 | C3R2 | C4R2
--------------------------------------
C1R3 | C2R3 | C3R3 | C4R3
--------------------------------------# dir.py
This file is part of Tabida
It can list specific files you want to handle.# tricky.py
This file is part of Tabida
This file contains some useful function for data processing.