Skip to content

Releases: EBI-Metagenomics/assembly_uploader

v1.2.0

12 Dec 16:39
eb25ae6
Compare
Choose a tag to compare

What's Changed

  • Added functionality to upload private data with Webin credentials.
  • Streamline ENA query exceptions

Full Changelog : v1.1.0...v1.2.0

v1.1.0

31 Oct 09:17
98b0989
Compare
Choose a tag to compare

What's Changed

The assembly_uploader steps can be integrated into other Python scripts:

from assembly_uploader.study_xmls import StudyXMLGenerator, METAGENOME
from assembly_uploader.submit_study import submit_study
from assembly_uploader.assembly_manifest import AssemblyManifestGenerator

StudyXMLGenerator(
    study="SRP272267",
    center_name="EMG",
    library=METAGENOME,
    tpa=True,
    output_dir=Path("my-study"),
).write()

new_study_accession = submit_study("SRP272267", is_test=True, directory=Path("my-study"))

AssemblyManifestGenerator(
    study="SRP272267",
    assembly_study=new_study_accession,
    assemblies_csv=Path("/path/to/my/assemblies.csv"),
    output_dir=Path("my-study"),
).write()

New Contributors

Full Changelog: 1.0.3...v1.1.0

1.0.3

03 Oct 15:02
fee3496
Compare
Choose a tag to compare

Fix to TPA flag

v1.0.1

10 Jun 16:13
7ad2d03
Compare
Choose a tag to compare
v1.0.1 Pre-release
Pre-release

Full Changelog: v1.0.0...v1.0.1

First RC release

10 Jun 15:46
20d2c57
Compare
Choose a tag to compare
First RC release Pre-release
Pre-release

This is the first stable release of the assembly uploader. Great work by @Ge94 @Vkale1 @KateSakharova

Full Changelog: https://github.com/EBI-Metagenomics/assembly_uploader/commits/v1.0.0