From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp11.migadu.com ([2001:41d0:203:b4db::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms12 with LMTPS id 4IoMMzlSFGJVNgAAsNZ9tg (envelope-from ); Tue, 22 Feb 2022 03:02:17 +0000 Received: from out0.migadu.com ([2001:41d0:2:267::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp11.migadu.com with LMTPS id 2P50MTlSFGLEmgAA9RJhRA (envelope-from ); Tue, 22 Feb 2022 04:02:17 +0100 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1645498937; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=tUkWaMYW36yo1d7TixfNBJO2mAZJex23YSnlLKtm8Lw=; b=vOM+6PRhRcclIujXttQolVusUXm2/QDdAGMYkZPeREUcCfJrivYH3pbk7UDA/btoQCaZVk 6AwsqIpNo/b9Y/QKQT6hnVSBKi6PD00g+IpPKhl6ao6AQGvH8pKDkJyNZw+xLNsJeBMora oqXtBKzP97/J6u75D4xxmlqMILp0p64tUzJBLqwCZ4eBT4kMmYIOwF54C9NW9gG+len0Dy ntsB6UaSpr5JcxePQwraMzNV5ujHPqSyYAGDONvyjNe08fNlpkK+H/436B1fAPvrBLw2Hj 66hmTM2BH/CbyG5lUHsihZUKB2rhxRkqN6ivqOZPN9LA2psBUIws7M4WPfCWLg== From: Kyle Meyer To: snakemake-mode@inbox.kyleam.com Subject: [PATCH 3/3] transient: Use --cores=all by default Date: Mon, 21 Feb 2022 22:02:07 -0500 Message-Id: <20220222030207.204401-4-kyle@kyleam.com> In-Reply-To: <20220222030207.204401-1-kyle@kyleam.com> References: <20220222030207.204401-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyleam.com X-TUID: hUEJMb2AkqOB --cores has been a mandatory argument since v5.11. Set the default to something that can actually build targets. --- snakemake.el | 1 + 1 file changed, 1 insertion(+) diff --git a/snakemake.el b/snakemake.el index 91fef4f..98467ce 100644 --- a/snakemake.el +++ b/snakemake.el @@ -742,6 +742,7 @@ (transient-define-argument snakemake:--cores () ;;;###autoload (autoload 'snakemake "snakemake" nil t) (transient-define-prefix snakemake "Transient for running Snakemake." + :value '("--cores=all") ["Arguments" ("-C" "Use conda" "--use-conda") ("-f" "Force" "--force") -- 2.34.0