Thomas 4 년 전
부모
커밋
c5293c366d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      index.ts

+ 1 - 1
index.ts

@@ -101,7 +101,7 @@ const clusterSam = (
             })
 
             Object.keys(byClusters).map(e => byClusters[e].length < minReads ? delete byClusters[e] : null);
-            resolve((Object.keys(byClusters).map(clusterName => ({clusterName, rnames: byClusters[clusterName]})).sort((a:any,b:any) => b.rname.length - a.rname.length)) )
+            resolve((Object.keys(byClusters).map(clusterName => ({clusterName, rnames: byClusters[clusterName]})).sort((a:any,b:any) => b.rnames.length - a.rnames.length)) )
     })
 }