HenrikBengtsson / affxparser

🔬 R package: This is the Bioconductor devel version of the affxparser package.
http://bioconductor.org/packages/devel/bioc/html/affxparser.html
7 stars 3 forks source link

CLEANUP: append(x, y) -> c(x, y) #30

Closed HenrikBengtsson closed 8 years ago

HenrikBengtsson commented 8 years ago

Replace all append(x, y) with c(x, y), because that's what append() does internally;

affxparser/R/cdfMergeAlleles.R:        fieldA <- append(fieldA, fieldB);
affxparser/R/cdfMergeStrands.R:            fields <- append(fields, fieldsNext);
affxparser/R/cdfMergeStrands.R:            fields <- append(fields, fieldsNext);
affxparser/R/cdfMergeToQuartets.R:        fieldA <- append(fieldA, fieldB);