You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Summary of output bins including quality and completeness estimates (DASTool_summary.txt).
72
-
-Scaffolds to bin file of output bins (DASTool_scaffolds2bin.txt).
68
+
-Contigs to bin file of output bins (DASTool_contigs2bin.txt).
73
69
- Quality and completeness estimates of input bin sets, if ```--write_bin_evals 1``` is set ([method].eval).
74
70
- Plots showing the amount of high quality bins and score distribution of bins per method, if ```--create_plots 1``` is set (DASTool_hqBins.pdf, DASTool_scores.pdf).
75
71
- Bins in fasta format if ```--write_bins 1``` is set (DASTool_bins).
**Example 2:** Run DAS Tool again with different parameters. Use the proteins predicted in Example 1 to skip the gene prediction step, disable writing of bin evaluations, set the number of threads to 2 and score threshold to 0.6. Output files will start with the prefix *DASToolRun2*:
88
+
**Example 2:** Run DAS Tool again with different parameters. Use the proteins predicted in Example 1 to skip the gene prediction step, output evaluations of input bins, set the number of threads to 2 and score threshold to 0.6. Output files will start with the prefix *DASToolRun2*:
Not all binning tools provide results in a tab separated file of scaffold-IDs and bin-IDs. A helper script can be used to convert a set of bins in fasta format to tabular scaffolds2bin file, which can be used as input for DAS Tool: `src/Fasta_to_Scaffolds2Bin.sh -h`.
175
+
Not all binning tools provide results in a tab separated file of contig-IDs and bin-IDs. A helper script can be used to convert a set of bins in fasta format to tabular contigs2bin file, which can be used as input for DAS Tool: `src/Fasta_to_Contigs2Bin.sh -h`.
195
176
196
177
### Usage:
197
178
```
198
-
Fasta_to_Scaffolds2Bin: Converts genome bins in fasta format to scaffolds-to-bin table.
179
+
Fasta_to_Contigs2Bin: Converts genome bins in fasta format to contigs-to-bin table.
199
180
200
-
Usage: Fasta_to_Scaffolds2Bin.sh -e fasta > my_scaffolds2bin.tsv
181
+
Usage: Fasta_to_Contigs2Bin.sh -e fasta > my_contigs2bin.tsv
201
182
202
183
-e, --extension Extension of fasta files. (default: fasta)
203
184
-i, --input_folder Folder with bins in fasta format. (default: ./)
204
185
-h, --help Show this message.
205
186
```
206
187
207
-
### Example: Converting MaxBin fasta output into tab separated scaffolds2bin file:
188
+
### Example: Converting MaxBin fasta output into tab separated contigs2bin file:
$ src/Fasta_to_Scaffolds2Bin.sh -i /maxbin/output/folder -e fasta > maxbin.scaffolds2bin.tsv
193
+
$ src/Fasta_to_Contigs2Bin.sh -i /maxbin/output/folder -e fasta > maxbin.contigs2bin.tsv
213
194
214
-
$ head gut_maxbin2_scaffolds2bin.tsv
195
+
$ head gut_maxbin2_contigs2bin.tsv
215
196
NODE_10_length_127450_cov_375.783524 maxbin.001
216
197
NODE_27_length_95143_cov_427.155298 maxbin.001
217
198
NODE_51_length_78315_cov_504.322425 maxbin.001
218
199
NODE_84_length_66931_cov_376.684775 maxbin.001
219
200
NODE_87_length_65653_cov_460.202156 maxbin.001
220
201
```
221
202
222
-
Some binning tools (such as CONCOCT) provide a comma separated tabular output. To convert a comma separated file into a tab separated file a one liner can be used: `perl -pe "s/,/\t/g;" scaffolds2bin.csv > scaffolds2bin.tsv`.
203
+
Some binning tools (such as CONCOCT) provide a comma separated tabular output. To convert a comma separated file into a tab separated file a one liner can be used: `perl -pe "s/,/\t/g;" contigs2bin.csv > contigs2bin.tsv`.
0 commit comments