We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e6dbaa commit 65410a2Copy full SHA for 65410a2
1 file changed
scripts/find_unmatched_corids.pl
@@ -15,6 +15,7 @@
15
$i=0;
16
17
%corid;
18
+$nmatched=0;
19
20
while(<IN>){
21
$line=$_;
@@ -31,6 +32,7 @@
31
32
if(exists $corid{$1}){
33
delete $corid{$1};
34
print "Matched $1\n";
35
+ $nmatched+=1;
36
}else{
37
$corid{$1} = 1;
38
print "Added $1\n";
@@ -57,6 +59,7 @@
57
59
close(IN);
58
60
61
$nunmatched=scalar keys %corid;
62
+print "--------$nmatched matched corids\n";
63
print "--------$nunmatched unmatched corids\n";
64
65
foreach $id (keys %corid){
0 commit comments