Skip to content

Commit d87363e

Browse files
committed
Fix align-protein-sequences task to produce the score_ascii file
1 parent 22a990b commit d87363e

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"type": "shell",
7+
"command": "compi-dk build -drd -tv",
8+
"problemMatcher": []
9+
},
10+
{
11+
"label": "publish [CompiHub]",
12+
"type": "shell",
13+
"command": "compi-dk hub-push --visible",
14+
"problemMatcher": []
15+
}
16+
]
17+
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.2.4] - 2023-06-22
4+
5+
### Fixed
6+
7+
- Add `score_ascii` to `-output` in `t_coffee` invocation of task `align-protein-sequences`.
8+
39
## [1.2.3] - 2022-08-02
410

511
### Fixed

DATASETS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Download, uncompress it and move to the `ipssa-m-leprae` directory, where you wi
88

99
## Compatible versions
1010

11+
- 1.2.4
1112
- 1.2.3
1213
- 1.2.2
1314
- 1.2.1

pipeline.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<pipeline xmlns="http://www.sing-group.org/compi/pipeline-1.0"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5-
<version>1.2.3</version>
5+
<version>1.2.4</version>
66

77
<params>
88
<param name="host_working_dir" shortName="hw" global="true">Path of the working directory in the host.</param>
@@ -142,7 +142,7 @@
142142
;;
143143
esac
144144

145-
docker run --rm -v ${host_working_dir}:/data pegi3s/tcoffee:${version_tcoffee} t_coffee /data/input/5_translated/${FILENAME} -method=${lowercase_align_method} -output=aln,fasta_aln,html -run_name /data/input/6_aligned/${FILENAME}
145+
docker run --rm -v ${host_working_dir}:/data pegi3s/tcoffee:${version_tcoffee} t_coffee /data/input/5_translated/${FILENAME} -method=${lowercase_align_method} -output=aln,fasta_aln,html,score_ascii -run_name /data/input/6_aligned/${FILENAME}
146146
</foreach>
147147

148148
<foreach id="back-translation" after="*align-protein-sequences" of="command" in="ls ${working_dir}/input/2_modified/*" as="file">

0 commit comments

Comments
 (0)