Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions qiita_db/support_files/patches/37.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ ALTER TABLE qiita.artifact_type_filepath_type ADD CONSTRAINT fk_artifact_type_fi
INSERT INTO qiita.artifact_type_filepath_type (artifact_type_id, filepath_type_id, required) VALUES
-- Artifact Type: SFF - Filepath Types: raw_sff (required)
(1, 17, TRUE),
-- Artifact Type: FASTA_Sanger - Filepath Types: raw_fasta (required), raw_qual (currently required)
(2, 18, TRUE), (2, 19, TRUE),
-- Artifact Type: FASTQ - Filepath Types: raw_forward_seqs (required), raw_reverse_seqs (optional), raw_barcodes (requred)
-- Artifact Type: FASTA_Sanger - Filepath Types: raw_fasta (required)
(2, 18, TRUE),
-- Artifact Type: FASTQ - Filepath Types: raw_forward_seqs (required), raw_reverse_seqs (optional), raw_barcodes (required)
(3, 1, TRUE), (3, 2, FALSE), (3, 3, TRUE),
-- Artifact Type: FASTA - Filepath Types: raw_fasta (required), raw_qual (currently required)
-- Artifact Type: FASTA - Filepath Types: raw_fasta (required), raw_qual (required)
(4, 18, TRUE), (4, 19, TRUE),
-- Artifact Type: per_sample_FASTQ - Filepath Types: raw_forward_seqs (required), raw_reverse_seqs (optional)
(5, 1, TRUE), (5, 2, FALSE),
-- Artifact Type: Demultiplexed - Filepath Types: preprocessed_fasta (required), preprocessed_fastq (required), preprocessed_demux (optional), log (optional)
(6, 4, TRUE), (6, 5, TRUE), (6, 6, FALSE), (6, 13, FALSE),
-- Artifact Type: BIOM - Filepath Types: biom, directory, log
-- Artifact Type: BIOM - Filepath Types: biom (required), directory (optional), log (optional)
(7, 7, TRUE), (7, 8, FALSE), (7, 13, FALSE);