Skip to content

Commit

Permalink
update v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedihafez committed Dec 4, 2024
1 parent c8b8c29 commit cb5e765
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
25 changes: 24 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@
// Resolved by CMake Tools:
//"program": "${command:cmake.launchTargetPath}",
"program": "${command:cmake.buildDirectory}/tfa_index",
"args": ["../Examples/100Kchr10.tfa.gz" , "-f" ],
// "args": ["../Examples/100Kchr10.tfa.gz" , "-f" ],
"args": ["/home/data/git/spiga/fastaconvtr/Examples/100Kallchr.tfa", "-f", "-o","/home/data/git/spiga/fastaconvtr/Examples/" ],

// "args": ["100Kchr10_t.tfa"],
//
// "args": ["100Kchr10_t.tfa" , "-o" , "xxx"],
Expand Down Expand Up @@ -168,6 +170,27 @@
]
},

{
"name": "tfa_merge",
"type": "cppdbg",
"request": "launch",
// Resolved by CMake Tools:
//"program": "${command:cmake.launchTargetPath}",
"program": "${command:cmake.buildDirectory}/tfa_merge",
// ./build/tfa_merge -i ./Examples/tfa_merge/example_1.tfa.gz -i ./Examples/tfa_merge/pileup_1.tfa.bgz -o ./Examples/tfa_merge/merged.tfa.gz
"args": ["-i", "example_1.tfa.gz", "-i", "pileup_1.tfa.bgz", "-o", "merged.tfa.gz"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/Examples/tfa_merge",
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "tfa_tabix",
"type": "cppdbg",
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Change log Version 1.1.0

## New Features
- tfa_merge: merge two tfasta files into one.
### tfa_merge command line usage
```bash
tfa_merge -i file1.tfa.gz -i file2.tfa.gz -o merged.tfa.gz
###
### Options:
- `-i, --input FILE`: Input file (specify twice for two files)
- `-o, --output FILE`: Output file name
- `-f, --force`: Force overwrite of output file
- `-h, --help`: Show help message
```


# Change log Version 1.0.0

mstatspop now accept tfasta file in version 2 compressed with htslib (bgzip) and indexed format (.tbi).
Expand Down

0 comments on commit cb5e765

Please sign in to comment.