Skip to content
Snippets Groups Projects
Commit 526cd489 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix adding path. Not needed if file is the same.

parent 0f381c55
No related merge requests found
...@@ -267,7 +267,7 @@ def generate_design(paired, cutoff_ratio, design_df, cwd, no_reps, no_unique_con ...@@ -267,7 +267,7 @@ def generate_design(paired, cutoff_ratio, design_df, cwd, no_reps, no_unique_con
path_to_control path_to_control
else: else:
path_to_pool_control = cwd + '/' + pool_control path_to_pool_control = pool_control
design_new_df['control_tag_align'] = path_to_pool_control design_new_df['control_tag_align'] = path_to_pool_control
# Add in pseudo replicates # Add in pseudo replicates
...@@ -306,7 +306,7 @@ def main(): ...@@ -306,7 +306,7 @@ def main():
design_df = pd.read_csv(design, sep='\t') design_df = pd.read_csv(design, sep='\t')
# Get current directory to build paths # Get current directory to build paths
cwd = os.getcwd() cwd = os.getcwd()
# Check Number of replicates and replicates # Check Number of replicates and replicates
no_reps = check_replicates(design_df) no_reps = check_replicates(design_df)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment