Skip to content

Commit

Permalink
Updating reference to cut2tsv input file
Browse files Browse the repository at this point in the history
  • Loading branch information
skchronicles committed Sep 11, 2023
1 parent 3c976bb commit 407c279
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python standard library
from os.path import join
import os, sys
import os, sys, json

# Local imports
from scripts.common import (
Expand Down Expand Up @@ -326,4 +326,4 @@ include: join("rules", "quant.smk")
include: join("rules", "editing_a-to-i.smk")
include: join("rules", "polya.smk")
include: join("rules", "diffexp.smk")
include: join("rules", "altsplice.smk")
include: join("rules", "altsplice.smk")
4 changes: 2 additions & 2 deletions workflow/rules/diffexp.smk
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ rule flair_diffexp:
# Create per-contrast counts matrix,
# extracts samples by their col name
{params.script} -c ${{grp1_samples}} ${{grp2_samples}} \\
-i {{input.counts}} \\
-i {input.counts} \\
> {output.counts}
# Find differential gene/isoform
Expand All @@ -72,4 +72,4 @@ rule flair_diffexp:
--out_dir {params.outdir} \\
--exp_thresh 10 \\
--out_dir_force
"""
"""

0 comments on commit 407c279

Please sign in to comment.