This repository has been archived by the owner on Jul 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,25 @@ | ||
# TAMA-singularity | ||
A definition file for building TAMA singularity container | ||
|
||
## Building container | ||
``` | ||
sudo singularity build TAMA.{sif, def} | ||
``` | ||
|
||
## Using TAMA | ||
There are two main Python scripts in TAMA: | ||
* tama_collapse.py | ||
* tama_merge.py | ||
|
||
They can be run as follows: | ||
|
||
### [tama_collapse.py](https://github.com/GenomeRIK/tama/wiki/Tama-Collapse) | ||
``` | ||
singularity exec TAMA.sif tama_collapse.py -h | ||
``` | ||
|
||
### [tama_merge.py](https://github.com/GenomeRIK/tama/wiki/Tama-Merge) | ||
``` | ||
singularity exec TAMA.sif tama_merge.py -h | ||
``` | ||
|