transrate 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/bin/transrate +1 -1
- data/lib/transrate/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be3eaa6170b268789a0ff6d6cb68448a7af6e037
|
|
4
|
+
data.tar.gz: 5e857b0392f9791e7111069ee1ed61ee19d3853c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f87811816aa975bfc85cfd025a90029c310bfdad19587cb5ea6a4909a78151f1904db0d69e5593b56f0f6b0044f5072e1e966580d7b6a45f78522ede8eda52cd
|
|
7
|
+
data.tar.gz: e9dba5e8a9910716250c3bd82bea190264d4ac32caf67acc44009b080e5eab553cf2a7317d1153d851f797c0eb45d07e1531896743b6bb1b3df902608d696d15
|
data/README.md
CHANGED
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
|
|
19
19
|
This software is being actively developed. Please be aware that there may be bugs. If you find any, please report them on the [issue tracker](https://github.com/Blahah/transrate/issues).
|
|
20
20
|
|
|
21
|
+
## Citation
|
|
22
|
+
|
|
23
|
+
Transrate is pre-publication academic software. If you use it, please cite the github repository and the DOI: [](http://dx.doi.org/10.5281/zenodo.11037).
|
|
24
|
+
|
|
21
25
|
## Documentation
|
|
22
26
|
|
|
23
27
|
**transrate** is documented [on the website](http://hibberdlab.com/transrate).
|
data/bin/transrate
CHANGED
|
@@ -211,7 +211,7 @@ opts.assembly.split(',').each do |assembly|
|
|
|
211
211
|
end
|
|
212
212
|
|
|
213
213
|
# write contig metrics to file for each contig
|
|
214
|
-
outfile = "#{opts.outfile}_contigs.csv"
|
|
214
|
+
outfile = "#{opts.outfile}_#{File.basename(assembly)}_contigs.csv"
|
|
215
215
|
logger.info "Writing contig metrics for each contig to #{outfile}"
|
|
216
216
|
# have option to turn off, default on
|
|
217
217
|
first=true
|
data/lib/transrate/version.rb
CHANGED