Skip to content

Commit 0f18be7

Browse files
authored
fix: update to using storage plugin ftp (#76)
* fix: update to using storage plugin ftp * fix: require a recent snakemake above version 8.0 * chore: remove unnecessary FTP import
1 parent 3380a05 commit 0f18be7

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

workflow/Snakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from snakemake.utils import min_version
22

33
##### set minimum snakemake version #####
4-
min_version("6.4.1")
4+
min_version("8.8.0")
55

66

77
##### setup report #####

workflow/rules/common.smk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import glob
22

33
import pandas as pd
4-
from snakemake.remote import FTP
54
from snakemake.utils import validate
65

7-
ftp = FTP.RemoteProvider()
8-
96
validate(config, schema="../schemas/config.schema.yaml")
107

118
samples = (

0 commit comments

Comments
 (0)