Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Configuration/adapter_list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ Illumina Small RNA 3' Adapter TGGAATTCTCGG
Illumina Small RNA 5' Adapter GATCGTCGGACT
Nextera Transposase Sequence CTGTCTCTTATA
PolyA AAAAAAAAAAAA
PolyG GGGGGGGGGGGG
PolyG GGGGGGGGGGGG
6 changes: 4 additions & 2 deletions src/FalcoConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ static const auto adapter_names = std::vector<std::string>{
"Illumina Small RNA 3 prime Adapter",
"Illumina Small RNA 5 prime Adapter",
"Nextera Transposase Sequence",
"SOLID Small RNA Adapter",
"PolyA",
"PolyG",
};

// Actual string sequence (eg: ATTGCCACA)
Expand All @@ -231,7 +232,8 @@ static const auto adapter_seqs = std::vector<std::string>{
"TGGAATTCTCGG",
"GATCGTCGGACT",
"CTGTCTCTTATA",
"CGCCTTGGCCGT",
"AAAAAAAAAAAA",
"GGGGGGGGGGGG",
};
// clang-format on

Expand Down
Loading