You can select the subset of channels using pick_channels and use it for
artifact rejection. In the end, you could combine the data in the modified
channels and the original channels by concatenating them in numpy and by
using EpochsArray. It will require a few lines of python code. Something
along the lines of:
epochs_subset = epochs.copy().pick_channels(...)
# run artifact rejection
X_clean = epochs_subset.get_data()
X_rest = epochs.pick_channels(...).get_data() # pick the rest of the