Skip to content

Commit

Permalink
Changed table name
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Nuhn committed Nov 23, 2015
1 parent 6013a88 commit 23dbc02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/sequencing/load_fastqc_summary_file.pl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ =head1 load_fastqc_summary_file.pl
=head1 SYNOPSIS
CREATE TABLE `input_subset_qc` (
CREATE TABLE `input_subset_fastqc` (
`input_subset_qc_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`input_subset_id` int(10) unsigned NOT NULL,
`status` varchar(100) NOT NULL,
Expand Down Expand Up @@ -92,7 +92,7 @@ =head1 DESCRIPTION
#print " - $current_line\n";
my @f = split "\t", $current_line;
#print Dumper(\@f);
my $sql = "INSERT INTO input_subset_qc (input_subset_id,status,title,file_name) VALUES (".$input_subset_id.", '".$f[0]."', '".$f[1]."', '".$f[2]."')";
my $sql = "INSERT INTO input_subset_fastqc (input_subset_id,status,title,file_name) VALUES (".$input_subset_id.", '".$f[0]."', '".$f[1]."', '".$f[2]."')";

print "$sql;\n";
}
Expand Down

0 comments on commit 23dbc02

Please sign in to comment.