-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ingest/nextclade: Add join of metadata and Nextclade outputs
The shell script for joining the metadata and Nextclade outputs is taken from @j23414's work in nextstrain/mpox#207 Co-authored-by: Jennifer Chang <jennifer.chang.bioinform@gmail.com>
- Loading branch information
1 parent
6c4b21d
commit 06e60de
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# TSV file that is a mapping of column names for Nextclade output TSV | ||
# The first column should be the original column name of the Nextclade TSV | ||
# The second column should be the new column name to use in the final metadata TSV | ||
# Nextclade can have pathogen specific output columns so make sure to check which | ||
# columns would be useful for your downstream phylogenetic analysis. | ||
seqName seqName | ||
clade clade | ||
lineage lineage | ||
coverage coverage | ||
totalMissing missing_data | ||
totalSubstitutions divergence | ||
totalNonACGTNs nonACGTN | ||
qc.missingData.status QC_missing_data | ||
qc.mixedSites.status QC_mixed_sites | ||
qc.privateMutations.status QC_rare_mutations | ||
qc.frameShifts.status QC_frame_shifts | ||
qc.stopCodons.status QC_stop_codons | ||
frameShifts frame_shifts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters