diff --git a/workflow/rna-seq.nf b/workflow/rna-seq.nf
index 32cf5a8b1180efa50c9c3e442ff73452fa6496f6..549cf3083072dca08aa8b7dec1dd0ae62d1caa8c 100644
--- a/workflow/rna-seq.nf
+++ b/workflow/rna-seq.nf
@@ -287,7 +287,6 @@ process trimData {
 // Replicate reference for multiple process inputs
 reference.into {
   reference_alignData
-  reference_inferMeta
 }
 
 /*
@@ -368,6 +367,7 @@ process dedupData {
 // Replicate dedup bam/bai for multiple process inputs
 dedupBam.into {
   dedupBam_makeBigWig
+  dedupBam_inferMeta
 }
 
 /*
@@ -423,7 +423,7 @@ process inferMetadata {
   input:
     path script_inferMeta
     path reference_inferMeta
-    set val (repRID), path (inBam), path (inBai) from rawBam_inferMetadata
+    set val (repRID), path (inBam), path (inBai) from dedupBam_inferMetadata
 
   output:
     path "infer.csv" into inferedMetadata
@@ -480,4 +480,4 @@ process inferMetadata {
     # write infered metadata to file
     echo \${endness},\${stranded},\${strategy},\${percentF},\${percentR},\${fail} > infer.csv
     """
-}
+}
\ No newline at end of file