You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

apscale

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apscale - pypi Package Compare versions

Comparing version
4.1.2
to
4.1.3
+1
-1
apscale.egg-info/PKG-INFO
Metadata-Version: 2.4
Name: apscale
Version: 4.1.2
Version: 4.1.3
Summary: Advanced Pipeline for Simple yet Comprehensive AnaLysEs of DNA metabarcoding data

@@ -5,0 +5,0 @@ Home-page: https://github.com/DominikBuchner/apscale

@@ -76,3 +76,8 @@ import glob, os, datetime, gzip, duckdb, hashlib, more_itertools, sys, subprocess

CREATE TABLE temp_db.sequence_read_count_data AS
SELECT * FROM read_parquet('{parquet_path}')
SELECT
CAST(sample AS VARCHAR) AS sample,
CAST(hash AS VARCHAR) AS hash,
CAST(sequence AS VARCHAR) AS sequence,
read_count
FROM read_parquet('{parquet_path}')
"""

@@ -597,4 +602,16 @@ )

grouping_connection.execute(
"CREATE OR REPLACE TABLE temp_db.groups_found AS SELECT * FROM all_hash_matches"
f"""
CREATE OR REPLACE TABLE temp_db.groups_found AS
SELECT
CAST(query AS VARCHAR) AS query,
CAST(target AS VARCHAR) AS target,
pct_id,
query_idx,
query_order,
target_idx,
target_order
FROM all_hash_matches
"""
)
mapping_csv.write(f"{sequence_idx}\t{sequence_idx}\n")

@@ -601,0 +618,0 @@ sequence_counter += 1

Metadata-Version: 2.4
Name: apscale
Version: 4.1.2
Version: 4.1.3
Summary: Advanced Pipeline for Simple yet Comprehensive AnaLysEs of DNA metabarcoding data

@@ -5,0 +5,0 @@ Home-page: https://github.com/DominikBuchner/apscale

@@ -8,3 +8,3 @@ import setuptools

name="apscale",
version="4.1.2",
version="4.1.3",
author="Dominik Buchner",

@@ -11,0 +11,0 @@ author_email="dominik.buchner524@googlemail.com",